bd72451a31156e98c9c3409c9a7be5348d3ec1a0
[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.3.1
4 TERMUX_PKG_BUILD_REVISION=1
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, libgnustl, libandroid-support, ncurses-utils, man"
9 TERMUX_PKG_BUILD_IN_SRC=yes
10 TERMUX_PKG_FOLDERNAME=fish-$TERMUX_PKG_VERSION
11
12 CXXFLAGS+=" $CPPFLAGS"
13
14 termux_step_post_make_install () {
15 cat >> $TERMUX_PREFIX/etc/fish/config.fish <<HERE
16
17 function __fish_command_not_found_handler --on-event fish_command_not_found
18 $TERMUX_PREFIX/libexec/termux/command-not-found \$argv[1]
19 end
20 HERE
21 }