summaryrefslogtreecommitdiff
path: root/core/dash
diff options
context:
space:
mode:
Diffstat (limited to 'core/dash')
-rw-r--r--core/dash/.footprint9
-rw-r--r--core/dash/.signature6
-rw-r--r--core/dash/MAKEPKG38
3 files changed, 53 insertions, 0 deletions
diff --git a/core/dash/.footprint b/core/dash/.footprint
new file mode 100644
index 0000000..9ac88e9
--- /dev/null
+++ b/core/dash/.footprint
@@ -0,0 +1,9 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/dash
+lrwxrwxrwx root/root bin/sh -> dash
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/dash.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/sh.1.gz -> dash.1.gz
diff --git a/core/dash/.signature b/core/dash/.signature
new file mode 100644
index 0000000..1278e7c
--- /dev/null
+++ b/core/dash/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mHb77i2pK/XQ9igx2PIMYL5SqcTS8nc00zTxuKVjPK4qJyiM3cCwCu0tpahYjqGyosPGptUhzfWEFfyijMCnOwQ=
+
+SHA256 (MAKEPKG) = db5386f6d051cf7ba297642353d56cca88e087f0a2520f59bf40038ac6e36843
+SHA256 (.footprint) = 3a7bbfc94c40691a4871ab86fb334dfcbc7f98f74ed06847f091ba0b1721d540
+SHA256 (dash-0.5.13.5.tar.gz) = 40090101a2a491f13e901d3d48e90414f26634628b9bfff35ff540363c227a7d
+SHA256 (dash#0.5.13.5-1.pkg.tar.gz) = acfbd7f4993dfe65978970a2d475d78e897236b917e30468fbc9e22948531278
diff --git a/core/dash/MAKEPKG b/core/dash/MAKEPKG
new file mode 100644
index 0000000..9536146
--- /dev/null
+++ b/core/dash/MAKEPKG
@@ -0,0 +1,38 @@
+#!/bin/mkpkg
+# description: The Almquist shell, a POSIX-compliant /bin/sh implementation
+# url: http://gondor.apana.org.au/~herbert/dash/
+
+name=dash
+version=0.5.13.5
+release=1
+makedeps=(autoconf patch)
+source=(http://gondor.apana.org.au/~herbert/dash/files/$name-$version.tar.gz)
+
+sha256sums=(
+ "40090101a2a491f13e901d3d48e90414f26634628b9bfff35ff540363c227a7d"
+)
+
+build() {
+ export LDFLAGS="-static"
+
+ cd $name-$version
+
+ autoreconf -if
+ ./configure \
+ --prefix=/ \
+ --mandir=/usr/share/man \
+ --enable-static=yes
+
+ make
+ make DESTDIR=$PKG install
+
+ ln -s dash $PKG/bin/sh
+ ln -s dash.1 $PKG/usr/share/man/man1/sh.1
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh