Enable command-not-found for bash and zsh interactive shells
[termux-packages] / packages / zsh / build.sh
1 TERMUX_PKG_HOMEPAGE="http://www.zsh.org/"
2 TERMUX_PKG_DESCRIPTION="Shell designed for interactive use, although it is also a powerful scripting language"
3 TERMUX_PKG_VERSION=5.0.8
4 TERMUX_PKG_BUILD_REVISION=4
5 TERMUX_PKG_SRCURL="http://downloads.sourceforge.net/project/zsh/zsh/${TERMUX_PKG_VERSION}/zsh-${TERMUX_PKG_VERSION}.tar.bz2"
6 TERMUX_PKG_RM_AFTER_INSTALL="bin/zsh-${TERMUX_PKG_VERSION}"
7 TERMUX_PKG_DEPENDS="libandroid-support, ncurses, termux-tools, command-not-found"
8 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-etcdir=$TERMUX_PREFIX/etc --disable-gdbm --disable-pcre ac_cv_header_utmp_h=no"
9
10 termux_step_post_make_install () {
11 # /etc/zshrc - Run for interactive shells (http://zsh.sourceforge.net/Guide/zshguide02.html):
12 sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-zshrc > $TERMUX_PREFIX/etc/zshrc
13 }