2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=http://gondor.apana.org.au/~herbert/dash/
|
|
|
|
TERMUX_PKG_DESCRIPTION="Small POSIX-compliant implementation of /bin/sh"
|
2015-12-04 01:04:57 +01:00
|
|
|
TERMUX_PKG_ESSENTIAL=yes
|
2016-06-27 23:40:17 +02:00
|
|
|
TERMUX_PKG_VERSION=0.5.9
|
2016-06-10 14:12:42 +02:00
|
|
|
TERMUX_PKG_SRCURL=http://gondor.apana.org.au/~herbert/dash/files/dash-${TERMUX_PKG_VERSION}.tar.gz
|
2015-06-13 01:03:31 +02:00
|
|
|
|
|
|
|
termux_step_post_make_install () {
|
|
|
|
# Symlink sh -> dash
|
|
|
|
rm -f $TERMUX_PREFIX/bin/sh $TERMUX_PREFIX/share/man/man1/sh.1
|
|
|
|
cd $TERMUX_PREFIX/bin
|
|
|
|
ln -s dash sh
|
|
|
|
cd $TERMUX_PREFIX/share/man/man1
|
|
|
|
ln -s dash.1 sh.1
|
|
|
|
}
|