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