X-Git-Url: http://gitweb/?a=blobdiff_plain;f=readline%2FPkgfile;h=5d5ac7e572c2ce4d1b623b5784b876d4ca5744df;hb=fa6cd34777268040e8d88ae86dcdaa984a3a8710;hp=ebaa40b88450692d599498af734e12855faa4e8c;hpb=b751b192b8a9f558df99b4050babc1b84d45a372;p=crossrootfs.git diff --git a/readline/Pkgfile b/readline/Pkgfile index ebaa40b..5d5ac7e 100644 --- a/readline/Pkgfile +++ b/readline/Pkgfile @@ -2,22 +2,32 @@ # 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, devel at crux-arm dot nu -# Depends on: +# Depends on: ncurses name=readline -version=6.1 +version=7.0 release=1 -source=(http://ftp.gnu.org/gnu/$name/$name-${version}.tar.gz \ +source=(http://ftp.gnu.org/gnu/$name/$name-${version::3}.tar.gz \ inputrc) build() { - cd $name-${version} + cd $name-$version + + # 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 DESTDIR=$PKG install + --prefix=/usr + + make -j1 SHLIB_LIBS=-lncurses + make -j1 DESTDIR=$PKG install + + install -d $PKG/lib + mv $PKG/usr/lib/lib*.so.* $PKG/lib + ln -sf ../../lib/libhistory.so.${version:0:3} $PKG/usr/lib/libhistory.so + ln -sf ../../lib/libreadline.so.${version:0: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/{doc,info} }