Add bc dependency to fish shell (#953)

See https://github.com/fish-shell/fish-shell/issues/2974

This will only fail at runtime in some autocomplete commands, if the dependency is not installed.
This commit is contained in:
Christian Rondeau 2017-04-22 17:34:50 -04:00 committed by Fredrik Fornwall
parent 953e38193a
commit f5a4f2c5de
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TE
TERMUX_PKG_SHA256=f8c0edadca2de379ccf305aeace660a9255fa2180c72e85e97705a24c256b2a5
# 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"
TERMUX_PKG_DEPENDS="ncurses, libandroid-support, ncurses-utils, man, bc"
TERMUX_PKG_BUILD_IN_SRC=yes
TERMUX_PKG_FOLDERNAME=fish-$TERMUX_PKG_VERSION
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_file__proc_self_stat=yes"