dropbear: update to 2018.76 (#2356)
[termux-packages] / packages / fish / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=http://fishshell.com/
2TERMUX_PKG_DESCRIPTION="Shell geared towards interactive use"
8f01b0cc
FF
3TERMUX_PKG_VERSION=2.7.1
4TERMUX_PKG_SHA256=e42bb19c7586356905a58578190be792df960fa81de35effb1ca5a5a981f0c5a
6250534f 5TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TERMUX_PKG_VERSION/fish-${TERMUX_PKG_VERSION}.tar.gz
8fa10e01
FF
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.
7e05574a 8TERMUX_PKG_DEPENDS="ncurses, libandroid-support, ncurses-utils, man, bc, pcre2"
59f0d218 9TERMUX_PKG_BUILD_IN_SRC=yes
7e05574a
FF
10TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
11ac_cv_file__proc_self_stat=yes
12--without-included-pcre2
13"
9bca348f 14
7ce56385
FF
15termux_step_pre_configure() {
16 CXXFLAGS+=" $CPPFLAGS"
8761f947
FF
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
7ce56385 20}
b8b62f25 21
6250534f
FF
22termux_step_post_make_install () {
23 cat >> $TERMUX_PREFIX/etc/fish/config.fish <<HERE
f54c9109 24
6250534f
FF
25function __fish_command_not_found_handler --on-event fish_command_not_found
26 $TERMUX_PREFIX/libexec/termux/command-not-found \$argv[1]
27end
28HERE
9bca348f 29}