command-not-found: Update with new executables
[termux-packages] / packages / zsh / build.sh
... / ...
CommitLineData
1TERMUX_PKG_HOMEPAGE="http://www.zsh.org/"
2TERMUX_PKG_DESCRIPTION="Shell designed for interactive use, although it is also a powerful scripting language"
3TERMUX_PKG_VERSION=5.1
4TERMUX_PKG_BUILD_REVISION=1
5TERMUX_PKG_SRCURL=http://www.zsh.org/pub/zsh-${TERMUX_PKG_VERSION}.tar.xz
6TERMUX_PKG_RM_AFTER_INSTALL="bin/zsh-${TERMUX_PKG_VERSION}"
7TERMUX_PKG_DEPENDS="libandroid-support, ncurses, termux-tools, command-not-found"
8TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-etcdir=$TERMUX_PREFIX/etc --disable-gdbm --disable-pcre ac_cv_header_utmp_h=no"
9
10termux_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
14 # Remove zsh.new/zsh.old/zsh-$version if any exists:
15 rm -f $TERMUX_PREFIX/{zsh-*,zsh.*}
16}