Files
termux-packages/packages/dash/build.sh
termux-pacman-bot 3d3c3ced84 fix(main/dash): switch to kernel.org mirror
- The official mirror is often down, which is inconvenient for building this package from source
2026-01-18 12:07:39 +00:00

21 lines
722 B
Bash

TERMUX_PKG_HOMEPAGE=http://gondor.apana.org.au/~herbert/dash/
TERMUX_PKG_DESCRIPTION="Small POSIX-compliant implementation of /bin/sh"
TERMUX_PKG_LICENSE="BSD 3-Clause"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.5.12"
TERMUX_PKG_REVISION=2
TERMUX_PKG_SRCURL="https://git.kernel.org/pub/scm/utils/dash/dash.git/snapshot/dash-${TERMUX_PKG_VERSION}.tar.gz"
TERMUX_PKG_SHA256=0d632f6b945058d84809cac7805326775bd60cb4a316907d0bd4228ff7107154
TERMUX_PKG_ESSENTIAL=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-static"
termux_step_pre_configure() {
autoreconf -fi
}
termux_step_post_make_install() {
# Symlink sh -> dash
ln -sfr $TERMUX_PREFIX/bin/{dash,sh}
ln -sfr $TERMUX_PREFIX/share/man/man1/{dash,sh}.1
}