Fredrik Fornwall
10 years ago
5 changed files with 29 additions and 4 deletions
@ -0,0 +1,12 @@ |
|||
diff -u -r ../bash-4.3/config-top.h ./config-top.h
|
|||
--- ../bash-4.3/config-top.h 2012-08-18 20:51:30.000000000 -0400
|
|||
+++ ./config-top.h 2015-07-13 19:19:51.094508470 -0400
|
|||
@@ -80,7 +80,7 @@
|
|||
#define KSH_COMPATIBLE_SELECT |
|||
|
|||
/* System-wide .bashrc file for interactive shells. */ |
|||
-/* #define SYS_BASHRC "/etc/bash.bashrc" */
|
|||
+#define SYS_BASHRC "@TERMUX_PREFIX@/etc/bash.bashrc"
|
|||
|
|||
/* System-wide .bash_logout for login shells. */ |
|||
/* #define SYS_BASH_LOGOUT "/etc/bash.bash_logout" */ |
@ -0,0 +1,3 @@ |
|||
command_not_found_handle() { |
|||
@TERMUX_PREFIX@/libexec/termux/command-not-found "$1" |
|||
} |
@ -1,8 +1,13 @@ |
|||
TERMUX_PKG_HOMEPAGE="http://www.zsh.org/" |
|||
TERMUX_PKG_DESCRIPTION="Shell designed for interactive use, although it is also a powerful scripting language" |
|||
TERMUX_PKG_VERSION=5.0.8 |
|||
TERMUX_PKG_BUILD_REVISION=3 |
|||
TERMUX_PKG_BUILD_REVISION=4 |
|||
TERMUX_PKG_SRCURL="http://downloads.sourceforge.net/project/zsh/zsh/${TERMUX_PKG_VERSION}/zsh-${TERMUX_PKG_VERSION}.tar.bz2" |
|||
TERMUX_PKG_RM_AFTER_INSTALL="bin/zsh-${TERMUX_PKG_VERSION}" |
|||
TERMUX_PKG_DEPENDS="libandroid-support, ncurses, termux-tools" |
|||
TERMUX_PKG_DEPENDS="libandroid-support, ncurses, termux-tools, command-not-found" |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-etcdir=$TERMUX_PREFIX/etc --disable-gdbm --disable-pcre ac_cv_header_utmp_h=no" |
|||
|
|||
termux_step_post_make_install () { |
|||
# /etc/zshrc - Run for interactive shells (http://zsh.sourceforge.net/Guide/zshguide02.html): |
|||
sed "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|" $TERMUX_PKG_BUILDER_DIR/etc-zshrc > $TERMUX_PREFIX/etc/zshrc |
|||
} |
|||
|
@ -0,0 +1,3 @@ |
|||
command_not_found_handler() { |
|||
@TERMUX_PREFIX@/libexec/termux/command-not-found $1 |
|||
} |
Loading…
Reference in new issue