X-Git-Url: http://gitweb/?a=blobdiff_plain;f=readline%2FPkgfile;h=47122f252deb76b503f2e2dad26099ed07878bc2;hb=4466e574d8c1151a707caddb2238a54f986cab6f;hp=d4c9bbcd3d95e504b93a68921bdf708be6a3a5ef;hpb=f4849e73fd2b689043eccccde594e85216d5a0da;p=crossrootfs.git diff --git a/readline/Pkgfile b/readline/Pkgfile index d4c9bbc..47122f2 100644 --- a/readline/Pkgfile +++ b/readline/Pkgfile @@ -5,22 +5,19 @@ # Depends on: ncurses name=readline -version=6.3.8 -release=2 -source=(http://ftp.gnu.org/gnu/$name/$name-${version::3}.tar.gz \ - $name-$version.patch.gz inputrc $name-$version-wcwidth.patch) +version=7.0.3 +release=1 +source=(http://ftpmirror.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz + $name-$version.patch.gz inputrc) build() { - cd $name-${version::3} + cd $name-${version:0: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 - # Patch to avoid wcwidth tests - patch -i $SRC/$name-$version-wcwidth.patch - ./configure --build=$CHOST \ --host=$CTARGET \ --prefix=/usr @@ -32,6 +29,10 @@ build() { 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 + # Compatibility symlinks, remove later + ln -s libreadline.so.7.0 $PKG/lib/libreadline.so.6 + ln -s libhistory.so.7.0 $PKG/lib/libhistory.so.6 + install -D -m 644 $SRC/inputrc $PKG/etc/inputrc rm -r $PKG/usr/share/{doc,info} }