summaryrefslogtreecommitdiff
path: root/repo/core/readline.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/readline.xibuild')
-rw-r--r--repo/core/readline.xibuild20
1 files changed, 20 insertions, 0 deletions
diff --git a/repo/core/readline.xibuild b/repo/core/readline.xibuild
new file mode 100644
index 0000000..844b109
--- /dev/null
+++ b/repo/core/readline.xibuild
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+DEPS=(glibc ncurses)
+
+SOURCE=https://git.savannah.gnu.org/git/readline.git
+DESC="a set of libraries that offer command line editing and history capabilities"
+
+
+build () {
+ ./configure --prefix=/usr \
+ --disable-static \
+ --with-curses \
+ --docdir=/usr/share/doc/readline-8.1
+
+ make SHLIB_LIBS="-lncursesw"
+ make SHLIB_LIBS="-lncursesw" DESTDIR=$PKG_DEST install
+
+ install -v -m644 doc/*.{ps,pdf,html,dvi} $PKG_DEST/usr/share/doc/readline-8.1
+}
+