From 91662cc1957a73501cbc3af3b67d72201cc3c595 Mon Sep 17 00:00:00 2001 From: Lukc Date: Tue, 21 Dec 2010 12:06:15 +0100 Subject: Recette de readline mise à jour. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readline/Pkgfile | 12 ++++++++---- 1 file 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 " maintainer="Lukc " 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 -- cgit v1.2.3-54-g00ecf