diff options
author | davidovski <david@davidovski.xyz> | 2022-02-21 20:38:23 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-21 20:38:23 +0000 |
commit | e6d87da3fba638080f1c43d8930b09e462d0e040 (patch) | |
tree | 4d6044bd5f37e75f21dc5ddd8c004a66a344a8dc /repo/util/dash.xibuild | |
parent | 659a17748c93c6523d2266511f4a5013a2c335be (diff) |
added dash
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 +} |