CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
wget: disabled rpath. Thanks j_v
[crossrootfs.git] / bash / Pkgfile
index 9761bd7ddf0d770e63a11c5fe4b17ed3871b6a4a..90c6a7adf2d7e3cdf36fb5af2bceae39c3ccafe2 100644 (file)
@@ -1,40 +1,48 @@
 # Description: An sh-compatible command language interpreter
 # URL: http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html
 # Maintainer: CRUX System Team, core-ports at crux dot nu
-# Arch Maintainer: CRUX ARM System Team, crux-arm at mikeux dot dyndns dot org
-# Depends on: ncurses
+# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
+# Depends on: ncurses readline
 
 name=bash
-version=4.0.28
-release=2
-source=(http://ftp.gnu.org/gnu/$name/$name-4.0.tar.gz \
-        http://crux.nu/ports/crux-2.5/core/$name/$name-4.0-001-028.patch.gz \
-        profile)
+version=4.3.42
+release=1
+source=(http://ftp.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \ \
+        $name-$version.patch.gz profile)
 
 build() {
-  cd $name-4.0
+  cd $name-${version:0:3}
+  
+  gunzip -c $SRC/$name-$version.patch.gz | patch -p0
 
-  gunzip -c $SRC/$name-4.0-001-028.patch.gz | patch -p0
-       cat > config.cache <<EOF
-bash_cv_sys_named_pipes=yes
+  cat > config.cache <<EOF
+ac_cv_func_mmap_fixed_mapped=yes
+ac_cv_func_strcoll_works=yes
+ac_cv_func_working_mktime=yes
+bash_cv_func_sigsetjmp=present
+bash_cv_getcwd_malloc=yes
 bash_cv_job_control_missing=present
+bash_cv_printf_a_format=yes
+bash_cv_sys_named_pipes=present
+bash_cv_ulimit_maxfds=yes
+bash_cv_under_sys_siglist=yes
+bash_cv_unusable_rtsigs=no
+gt_cv_int_divbyzero_sigfpe=yes
 EOF
 
-  touch configure
   ./configure --build=$CHOST \
               --host=$CTARGET \
-              --cache-file=config.cache \
               --prefix=/usr \
               --exec-prefix= \
               --mandir=/usr/man \
               --disable-nls \
               --without-bash-malloc \
-              --with-curses
-  make 
-  make DESTDIR=$PKG install
+              --with-curses \
+              --with-installed-readline \
+              --cache-file=config.cache
 
-  rm -rf $PKG/usr/share $PKG/bin/bashbug $PKG/usr/man/man1/bashbug.1
+  make 
+  install -D -m 755 bash $PKG/bin/bash
+  install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1
   install -D -m 644 $SRC/profile $PKG/etc/profile
-  ln -sf bash $PKG/bin/sh
-  ln -sf bash.1 $PKG/usr/man/man1/sh.1
 }