X-Git-Url: http://gitweb/?a=blobdiff_plain;f=readline%2FPkgfile;h=1e9e2d31162eb86f9dfdac0ce54d44eac2643a02;hb=c2b30fb83694e5ee01404f52eacaf7b3f3eaa3c8;hp=f95509c42acd1117f53f6ad7a23e8b5ce9552b5f;hpb=89d5e262ad90d824dbd07fb7a77052718dee1044;p=crossrootfs.git diff --git a/readline/Pkgfile b/readline/Pkgfile index f95509c..1e9e2d3 100644 --- a/readline/Pkgfile +++ b/readline/Pkgfile @@ -1,23 +1,35 @@ # Description: Lets users edit command lines as they are typed in # URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html # Maintainer: CRUX System Team, core-ports at crux dot nu -# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org -# Depends on: +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu +# Depends on: ncurses name=readline -version=6.1 +version=6.2.1 release=1 -source=(http://ftp.gnu.org/gnu/$name/$name-${version}.tar.gz \ - inputrc) +source=(http://ftp.gnu.org/gnu/$name/$name-${version::3}.tar.gz \ + $name-$version.patch.gz inputrc) build() { - cd $name-${version} + cd $name-${version::3} + + gunzip -c $SRC/$name-$version.patch.gz | patch -p0 + + # Don't use rpath for linking the shared libs + sed -i '117s/-Wl,-rpath,$(libdir)//' support/shobj-conf + ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr \ --mandir=/usr/man - make + 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.${version::3} $PKG/usr/lib/libhistory.so + ln -sf ../../lib/libreadline.so.${version::3} $PKG/usr/lib/libreadline.so + install -D -m 644 $SRC/inputrc $PKG/etc/inputrc - rm -rf $PKG/usr/share/info + rm -r $PKG/usr/share/info }