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
5 # Depends on: ncurses readline
10 source=(http://ftp.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \ \
11 $name-$version.patch.gz profile)
14 cd $name-${version:0:3}
16 gunzip -c $SRC/$name-$version.patch.gz | patch -p0
18 cat > config.cache <<EOF
19 ac_cv_func_mmap_fixed_mapped=yes
20 ac_cv_func_strcoll_works=yes
21 ac_cv_func_working_mktime=yes
22 bash_cv_func_sigsetjmp=present
23 bash_cv_getcwd_malloc=yes
24 bash_cv_job_control_missing=present
25 bash_cv_printf_a_format=yes
26 bash_cv_sys_named_pipes=present
27 bash_cv_ulimit_maxfds=yes
28 bash_cv_under_sys_siglist=yes
29 bash_cv_unusable_rtsigs=no
30 gt_cv_int_divbyzero_sigfpe=yes
33 ./configure --build=$CHOST \
39 --without-bash-malloc \
41 --with-installed-readline \
42 --cache-file=config.cache
45 install -D -m 755 bash $PKG/bin/bash
46 install -D -m 644 doc/bash.1 $PKG/usr/man/man1/bash.1
47 install -D -m 644 $SRC/profile $PKG/etc/profile
49 ln -s bash $PKG/bin/sh
50 ln -s bash.1 $PKG/usr/man/man1/sh.1