1 # Description: An sh-compatible command language interpreter
2 # URL: http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
10 source=(http://ftp.gnu.org/gnu/$name/$name-${version%.*}.tar.gz \
11 $name-$version.patch.gz profile)
14 cd $name-${version::3}
16 gunzip -c $SRC/$name-$version.patch.gz | patch -p0
18 cat > config.cache <<EOF
19 bash_cv_sys_named_pipes=yes
20 bash_cv_job_control_missing=present
24 ./configure --build=$CHOST \
26 --cache-file=config.cache \
31 --without-bash-malloc \
34 install -D -m 755 bash $PKG/bin/bash
35 install -D -m 644 doc/bash.1 $PKG/usr/man/man1/bash.1
36 install -D -m 644 $SRC/profile $PKG/etc/profile
38 ln -s bash $PKG/bin/sh
39 ln -s bash.1 $PKG/usr/man/man1/sh.1