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"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
2020-05-02 10:09:50 +02:00
|
|
|
TERMUX_PKG_VERSION=3.1.2
|
2016-08-06 10:14:04 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TERMUX_PKG_VERSION/fish-${TERMUX_PKG_VERSION}.tar.gz
|
2020-05-02 10:09:50 +02:00
|
|
|
TERMUX_PKG_SHA256=d5b927203b5ca95da16f514969e2a91a537b2f75bec9b21a584c4cd1c7aa74ed
|
2016-08-06 23:37:29 +02:00
|
|
|
# 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.
|
2019-06-19 20:25:57 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libc++, ncurses, libandroid-support, ncurses-utils, man, bc, pcre2"
|
2019-08-12 17:28:41 +02:00
|
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
2020-02-15 23:17:20 +01:00
|
|
|
# Prevent clash with ripgrep package:
|
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="share/fish/completions/rg.fish"
|
2017-11-03 23:07:11 +01:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
2020-02-15 23:17:20 +01:00
|
|
|
-DBUILD_DOCS=OFF
|
2017-11-03 23:07:11 +01:00
|
|
|
"
|
2015-07-13 08:54:11 +02:00
|
|
|
|
2016-09-04 00:45:08 +02:00
|
|
|
termux_step_pre_configure() {
|
|
|
|
CXXFLAGS+=" $CPPFLAGS"
|
|
|
|
}
|
2015-07-30 16:52:18 +02:00
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_post_make_install() {
|
2016-08-06 10:14:04 +02:00
|
|
|
cat >> $TERMUX_PREFIX/etc/fish/config.fish <<HERE
|
2015-10-01 01:16:05 +02:00
|
|
|
|
2016-08-06 10:14:04 +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
|
|
|
}
|