CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
bc: updated source
[crossrootfs.git] / readline / Pkgfile
index 1e9e2d31162eb86f9dfdac0ce54d44eac2643a02..5d5ac7e572c2ce4d1b623b5784b876d4ca5744df 100644 (file)
@@ -5,31 +5,29 @@
 # Depends on: ncurses
 
 name=readline
-version=6.2.1
+version=7.0
 release=1
 source=(http://ftp.gnu.org/gnu/$name/$name-${version::3}.tar.gz \
-        $name-$version.patch.gz inputrc)
+        inputrc)
 
 build() {
-  cd $name-${version::3}
-
-  gunzip -c $SRC/$name-$version.patch.gz | patch -p0
+  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 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::3} $PKG/usr/lib/libhistory.so
-  ln -sf ../../lib/libreadline.so.${version::3} $PKG/usr/lib/libreadline.so
+  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 -r $PKG/usr/share/info
+  rm -r $PKG/usr/share/{doc,info}
 }