CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
bash: updated to 4.4
[crossrootfs.git] / bash / Pkgfile
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
6
7 name=bash
8 version=4.4
9 release=1
10 source=(http://ftp.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \
11 profile)
12
13 build() {
14 cd $name-$version
15
16 cat > config.cache <<EOF
17 ac_cv_func_mmap_fixed_mapped=yes
18 ac_cv_func_strcoll_works=yes
19 ac_cv_func_working_mktime=yes
20 bash_cv_func_sigsetjmp=present
21 bash_cv_getcwd_malloc=yes
22 bash_cv_job_control_missing=present
23 bash_cv_printf_a_format=yes
24 bash_cv_sys_named_pipes=present
25 bash_cv_ulimit_maxfds=yes
26 bash_cv_under_sys_siglist=yes
27 bash_cv_unusable_rtsigs=no
28 gt_cv_int_divbyzero_sigfpe=yes
29 EOF
30
31 ./configure --build=$CHOST \
32 --host=$CTARGET \
33 --prefix=/usr \
34 --exec-prefix= \
35 --mandir=/usr/man \
36 --disable-nls \
37 --without-bash-malloc \
38 --with-curses \
39 --cache-file=config.cache
40
41 make
42 install -D -m 755 bash $PKG/bin/bash
43 install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1
44 install -D -m 644 $SRC/profile $PKG/etc/profile
45 }