diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 13:39:28 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 13:39:28 +0200 |
commit | a2a2b89094dc3305e25f48517bbbc1857c71e666 (patch) | |
tree | 5c5a5dd35cb59c84091d9c7c7f5af04e90292f3b /base/readline/Pkgfile | |
parent | 3e6ab7733b1d8f099addc62aaf6c3518272a7711 (diff) | |
download | nutyx-extra-a2a2b89094dc3305e25f48517bbbc1857c71e666.tar.gz nutyx-extra-a2a2b89094dc3305e25f48517bbbc1857c71e666.tar.bz2 nutyx-extra-a2a2b89094dc3305e25f48517bbbc1857c71e666.tar.xz nutyx-extra-a2a2b89094dc3305e25f48517bbbc1857c71e666.zip |
Ajout de readline#6.0-1
Diffstat (limited to 'base/readline/Pkgfile')
-rwxr-xr-x | base/readline/Pkgfile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/base/readline/Pkgfile b/base/readline/Pkgfile new file mode 100755 index 000000000..3079d2c16 --- /dev/null +++ b/base/readline/Pkgfile @@ -0,0 +1,33 @@ +# Description: Jeux de librairies permetant l'historique des commande en ligne +# URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: grep + +name=readline +version=6.0 +release=1 +source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz\ + http://www.linuxfromscratch.org/patches/lfs/development/readline-$version-fixes-1.patch) +build() { +cd $name-$version +sed -i '/MV.*old/d' Makefile.in +sed -i '/{OLDSUFF}/c:' support/shlib-install +patch -Np1 -i ../readline-$version-fixes-1.patch + +./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --libdir=/lib +make SHLIBS=-lncurses +make DESTDIR=$PKG install + +mkdir -p $PKG/usr/lib +mv -v $PKG/lib/lib{readline,history}.a $PKG/usr/lib +rm -v $PKG/lib/lib{readline,history}.so +ln -sfv ../../lib/libreadline.so.6 $PKG/usr/lib/libreadline.so +ln -sfv ../../lib/libhistory.so.6 $PKG/usr/lib/libhistory.so +if [ -f $PKG/usr/share/info/dir ]; then + rm $PKG/usr/share/info/dir +fi +} |