CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
iputils: updated to s20151218
[crossrootfs.git] / bash / Pkgfile
index 570564ea18b4f167957b3933daef08fb989bae45..80cc0b391239625c7c713ddfed5a6f681b7e1d04 100644 (file)
@@ -5,15 +5,13 @@
 # Depends on: ncurses readline
 
 name=bash
-version=4.3.18
+version=4.4
 release=1
-source=(http://ftp.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \ \
-        $name-$version.patch.gz profile)
+source=(http://ftp.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \
+        profile)
 
 build() {
-  cd $name-${version:0:3}
-  
-  gunzip -c $SRC/$name-$version.patch.gz | patch -p0
+  cd $name-$version
 
   cat > config.cache <<EOF
 ac_cv_func_mmap_fixed_mapped=yes
@@ -38,14 +36,10 @@ EOF
               --disable-nls \
               --without-bash-malloc \
               --with-curses \
-              --with-installed-readline \
               --cache-file=config.cache
 
   make 
   install -D -m 755 bash $PKG/bin/bash
-  install -D -m 644 doc/bash.1 $PKG/usr/man/man1/bash.1
+  install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1
   install -D -m 644 $SRC/profile $PKG/etc/profile
-
-  ln -s bash $PKG/bin/sh
-  ln -s bash.1 $PKG/usr/man/man1/sh.1
 }