CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
ncurses: updated to 6.1. Disabled stripping
[crossrootfs.git] / readline / Pkgfile
index e5e0e0079385ea55602add26cbee014fa584947f..47122f252deb76b503f2e2dad26099ed07878bc2 100644 (file)
@@ -5,34 +5,34 @@
 # Depends on: ncurses
 
 name=readline
-version=6.3.6
+version=7.0.3
 release=1
-source=(http://ftp.gnu.org/gnu/$name/$name-${version::3}.tar.gz \
-        $name-$version.patch.gz inputrc $name-$version-wcwidth.patch)
+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 \
-              --mandir=/usr/man
-  make SHLIB_LIBS=-lncurses
-  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
 
+  # 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/info
+  rm -r $PKG/usr/share/{doc,info}
 }