From e6d87da3fba638080f1c43d8930b09e462d0e040 Mon Sep 17 00:00:00 2001
From: davidovski <david@davidovski.xyz>
Date: Mon, 21 Feb 2022 20:38:23 +0000
Subject: added dash

---
 repo/util/dash.xibuild | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 repo/util/dash.xibuild

(limited to 'repo/util/dash.xibuild')

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
+}
-- 
cgit v1.2.1