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