libhdf5: add missing architectures
[termux-packages] / packages / fish / build.sh
1 TERMUX_PKG_HOMEPAGE=http://fishshell.com/
2 TERMUX_PKG_DESCRIPTION="Shell geared towards interactive use"
3 TERMUX_PKG_VERSION=2.7.1
4 TERMUX_PKG_SHA256=e42bb19c7586356905a58578190be792df960fa81de35effb1ca5a5a981f0c5a
5 TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TERMUX_PKG_VERSION/fish-${TERMUX_PKG_VERSION}.tar.gz
6 # fish calls 'tput' from ncurses-utils, at least when cancelling (Ctrl+C) a command line.
7 # man is needed since fish calls apropos during command completion.
8 TERMUX_PKG_DEPENDS="ncurses, libandroid-support, ncurses-utils, man, bc, pcre2"
9 TERMUX_PKG_BUILD_IN_SRC=yes
10 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
11 ac_cv_file__proc_self_stat=yes
12 --without-included-pcre2
13 "
14
15 termux_step_pre_configure() {
16 CXXFLAGS+=" $CPPFLAGS"
17
18 # The column(1) utility is used by oh-my-fish, so we bundle column.c from bsdmainutils with it:
19 $CC $CFLAGS $LDFLAGS -DLINE_MAX=_POSIX2_LINE_MAX $TERMUX_PKG_BUILDER_DIR/column.c -o $TERMUX_PREFIX/bin/column
20 }
21
22 termux_step_post_make_install () {
23 cat >> $TERMUX_PREFIX/etc/fish/config.fish <<HERE
24
25 function __fish_command_not_found_handler --on-event fish_command_not_found
26 $TERMUX_PREFIX/libexec/termux/command-not-found \$argv[1]
27 end
28 HERE
29 }