diff options
Diffstat (limited to 'repo/util')
-rw-r--r-- | repo/util/bash.xibuild | 4 | ||||
-rw-r--r-- | repo/util/dash.xibuild | 24 |
2 files changed, 27 insertions, 1 deletions
diff --git a/repo/util/bash.xibuild b/repo/util/bash.xibuild index 8e1a3d8..15f0f89 100644 --- a/repo/util/bash.xibuild +++ b/repo/util/bash.xibuild @@ -14,7 +14,9 @@ build () { package () { make DESTDIR=$PKG_DEST install - ln $PKG_DEST/usr/bin/bash $PKG_DEST/usr/bin/sh + + # favouring dash as /bin/sh + #ln $PKG_DEST/usr/bin/bash $PKG_DEST/usr/bin/sh } postinstall () { 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 +} |