summaryrefslogtreecommitdiff
path: root/xibuilds/readline.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'xibuilds/readline.xibuild')
-rw-r--r--xibuilds/readline.xibuild20
1 files changed, 0 insertions, 20 deletions
diff --git a/xibuilds/readline.xibuild b/xibuilds/readline.xibuild
deleted file mode 100644
index 844b109..0000000
--- a/xibuilds/readline.xibuild
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/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
-}
-