diff options
Diffstat (limited to 'repo/util/dash.xibuild')
-rw-r--r-- | repo/util/dash.xibuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/repo/util/dash.xibuild b/repo/util/dash.xibuild new file mode 100644 index 0000000..c12f1e6 --- /dev/null +++ b/repo/util/dash.xibuild @@ -0,0 +1,24 @@ +#!/bin/bash + +MAKEDEPS=(make ) +DEPS=(glibc) + +PKG_VER=0.5.11.5 +SOURCE=http://gondor.apana.org.au/~herbert/dash/files/dash-$PKG_VER.tar.gz +DESC="POSIX compliant shell that aims to be as small as possible" + +build () { + ./configure --bindir=/bin --mandir=/usr/share/man && + make +} + +package () { + make DESTDIR=$PKG_DEST install + ln $PKG_DEST/usr/bin/dash $PKG_DEST/usr/bin/sh +} + +postinstall () { + if [ -f /etc/shells ] || grep -vq "dash" /etc/shells; then + echo "/bin/bash" >> /etc/shells + fi +} |