ac3bfc5e850a33d35d5db8ab74dbeea482a6e51e
[termux-packages] / packages / bash / build.sh
1 TERMUX_PKG_HOMEPAGE=http://www.gnu.org/software/bash/
2 TERMUX_PKG_DESCRIPTION="A sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh)"
3 TERMUX_PKG_DEPENDS="ncurses, readline, libandroid-support, termux-tools, command-not-found"
4 _MAIN_VERSION=4.4
5 _PATCH_VERSION=0
6 TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION}
7 TERMUX_PKG_SRCURL=http://ftp.gnu.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz
8 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-multibyte --without-bash-malloc --with-installed-readline ac_cv_header_grp_h=no ac_cv_rl_version=7.0"
9 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_job_control_missing=present"
10 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_sys_siglist=yes"
11 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_func_sigsetjmp=present"
12 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_unusable_rtsigs=no"
13 # Use bash_cv_dev_fd=whacky to use /proc/self/fd instead of /dev/fd.
14 # After making this change process substitution such as in 'cat <(ls)' works.
15 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_dev_fd=whacky"
16
17 TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/bashbug.1 bin/bashbug"
18
19 termux_step_pre_configure () {
20 cd $TERMUX_PKG_SRCDIR
21 for patch_number in `seq -f '%03g' ${_PATCH_VERSION}`; do
22 PATCHFILE=$TERMUX_PKG_CACHEDIR/bash_patch_${patch_number}.patch
23 test ! -f $PATCHFILE && curl "http://ftp.gnu.org/gnu/bash/bash-4.4-patches/bash44-$patch_number" > $PATCHFILE
24 patch -p0 -i $PATCHFILE
25 done
26 }
27
28 termux_step_post_make_install () {
29 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-profile > $TERMUX_PREFIX/etc/profile
30 # /etc/bash.bashrc - System-wide .bashrc file for interactive shells. (config-top.h in bash source, patched to enable):
31 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-bash.bashrc > $TERMUX_PREFIX/etc/bash.bashrc
32 }