termux-packages/packages/dash/build.sh

15 lines
604 B
Bash
Raw Normal View History

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"
2019-01-20 22:39:59 +01:00
TERMUX_PKG_LICENSE="BSD 3-Clause"
2020-07-20 21:35:05 +02:00
TERMUX_PKG_VERSION=0.5.11.1
2018-05-13 01:53:19 +02:00
TERMUX_PKG_SRCURL=http://gondor.apana.org.au/~herbert/dash/files/dash-${TERMUX_PKG_VERSION}.tar.gz
2020-07-20 21:35:05 +02:00
TERMUX_PKG_SHA256=73c881f146e329ac54962766760fd62cb8bdff376cd6c2f5772eecc1570e1611
TERMUX_PKG_ESSENTIAL=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-static"
2015-06-13 01:03:31 +02:00
termux_step_post_make_install() {
2015-06-13 01:03:31 +02:00
# Symlink sh -> dash
ln -sfr $TERMUX_PREFIX/bin/{dash,sh}
ln -sfr $TERMUX_PREFIX/share/man/man1/{dash,sh}.1
2015-06-13 01:03:31 +02:00
}