diff options
author | Lukc <lukc@upyum.com> | 2010-12-21 12:06:15 +0100 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2010-12-21 12:06:15 +0100 |
commit | 91662cc1957a73501cbc3af3b67d72201cc3c595 (patch) | |
tree | d559d8a51dce98f659cfca237b78a2e4d9fefc9b /readline | |
parent | bc921d4f8836152e98e1de0cbd69458f0125dfd8 (diff) | |
download | base-91662cc1957a73501cbc3af3b67d72201cc3c595.tar.gz base-91662cc1957a73501cbc3af3b67d72201cc3c595.tar.bz2 base-91662cc1957a73501cbc3af3b67d72201cc3c595.tar.xz base-91662cc1957a73501cbc3af3b67d72201cc3c595.zip |
Recette de readline mise à jour.
Diffstat (limited to 'readline')
-rw-r--r-- | readline/Pkgfile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/readline/Pkgfile b/readline/Pkgfile index aa0e0e7..e6b22ea 100644 --- a/readline/Pkgfile +++ b/readline/Pkgfile @@ -1,4 +1,4 @@ -description="Lets users edit command lines as they are typed in" +description="Lets users edit command lines as they are typed in." packager="CRUX System Team <core-ports AT crux DOT nu>" maintainer="Lukc <lukc AT upyum DOT com>" url="http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html" @@ -12,13 +12,17 @@ build () { cd $name-6.1; gunzip -c $SRC/$name-6.1-001-002.patch.gz | patch -p0; - ./configure --prefix=$prefix --mandir=$mandir; + ./configure \ + ${CHOST:+--build=${CHOST}} \ + ${CTARGET:+--host=${CTARGET}} \ + --prefix=$prefix \ + --mandir=$mandir; make SHLIB_LIBS=-lncurses; make DESTDIR=$PKG install; install -d $PKG/lib; mv $PKG$prefix/lib/lib*.so.* $PKG/lib; - ln -sf ../../lib/libhistory.so.6.1 $PKG$prefix/lib/libhistory.so; - ln -sf ../../lib/libreadline.so.6.1 $PKG$prefix/lib/libreadline.so; + ln -sf ../../lib/libhistory.so.${version%\.*} $PKG$prefix/lib/libhistory.so; + ln -sf ../../lib/libreadline.so.${version%\.*} $PKG$prefix/lib/libreadline.so; install -D -m 644 $SRC/inputrc $PKG/etc/inputrc; #if ! use info; then # rm -r $PKG/usr/share/info |