diff options
author | Lukc <lukc@upyum.com> | 2010-12-11 19:15:23 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-11 19:15:35 +0100 |
commit | 6d908a38e05b9d4135c65d23114a5874215b5bb8 (patch) | |
tree | b5e6da6d95b9a1235d82032b509b80483a886ff5 /readline/Pkgfile | |
download | base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.gz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.bz2 base-6d908a38e05b9d4135c65d23114a5874215b5bb8.tar.xz base-6d908a38e05b9d4135c65d23114a5874215b5bb8.zip |
Engagement initial.
Diffstat (limited to 'readline/Pkgfile')
-rw-r--r-- | readline/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/readline/Pkgfile b/readline/Pkgfile new file mode 100644 index 0000000..46569df --- /dev/null +++ b/readline/Pkgfile @@ -0,0 +1,24 @@ +description="Lets users edit command lines as they are typed in" +packager="" +maintainer="CRUX System Team, core-ports at crux dot nu" +url="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html" +depends=(ncurses) + +name=readline +version=6.1.2 +release=2 +source=(http://ftp.gnu.org/gnu/readline/readline-6.1.tar.gz readline-6.1-001-002.patch.gz inputrc) +build () +{ + cd $name-6.1; + gunzip -c $SRC/$name-6.1-001-002.patch.gz | patch -p0; + ./configure --prefix=/usr --mandir=/usr/man; + make SHLIB_LIBS=-lncurses; + make DESTDIR=$PKG install; + install -d $PKG/lib; + mv $PKG/usr/lib/lib*.so.* $PKG/lib; + ln -sf ../../lib/libhistory.so.6.1 $PKG/usr/lib/libhistory.so; + ln -sf ../../lib/libreadline.so.6.1 $PKG/usr/lib/libreadline.so; + install -D -m 644 $SRC/inputrc $PKG/etc/inputrc; + rm -r $PKG/usr/share/info +} |