termux-packages/packages/fish/build.sh

31 lines
1.2 KiB
Bash
Raw Normal View History

2018-05-25 12:38:52 +02:00
TERMUX_PKG_HOMEPAGE=https://fishshell.com/
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DESCRIPTION="Shell geared towards interactive use"
2017-12-23 11:39:21 +01:00
TERMUX_PKG_VERSION=2.7.1
TERMUX_PKG_REVISION=1
2017-12-23 11:39:21 +01:00
TERMUX_PKG_SHA256=e42bb19c7586356905a58578190be792df960fa81de35effb1ca5a5a981f0c5a
TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TERMUX_PKG_VERSION/fish-${TERMUX_PKG_VERSION}.tar.gz
# fish calls 'tput' from ncurses-utils, at least when cancelling (Ctrl+C) a command line.
# man is needed since fish calls apropos during command completion.
TERMUX_PKG_DEPENDS="ncurses, libandroid-support, ncurses-utils, man, bc, pcre2"
2015-06-13 01:03:31 +02:00
TERMUX_PKG_BUILD_IN_SRC=yes
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
ac_cv_file__proc_self_stat=yes
--without-included-pcre2
"
2015-07-13 08:54:11 +02:00
2016-09-04 00:45:08 +02:00
termux_step_pre_configure() {
CXXFLAGS+=" $CPPFLAGS"
# The column(1) utility is used by oh-my-fish, so we bundle column.c from bsdmainutils with it:
$CC $CFLAGS $LDFLAGS -DLINE_MAX=_POSIX2_LINE_MAX $TERMUX_PKG_BUILDER_DIR/column.c -o $TERMUX_PREFIX/bin/column
2016-09-04 00:45:08 +02:00
}
2015-07-30 16:52:18 +02:00
termux_step_post_make_install () {
cat >> $TERMUX_PREFIX/etc/fish/config.fish <<HERE
2015-10-01 01:16:05 +02:00
function __fish_command_not_found_handler --on-event fish_command_not_found
$TERMUX_PREFIX/libexec/termux/command-not-found \$argv[1]
end
HERE
2015-07-13 08:54:11 +02:00
}