--- /dev/null
+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
--- /dev/null
+# Description: The Almquist shell, a POSIX-compliant /bin/sh implementation
+# URL: http://gondor.apana.org.au/~herbert/dash/
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
+
+name=dash
+version=20150713
+release=1
+source=(http://jue.li/crux/files/$name-$version.tar.xz)
+
+build() {
+ cd $name-$version
+ ./autogen.sh
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix= \
+ --mandir=/usr/share/man
+ make
+ make DESTDIR=$PKG install
+ ln -s dash $PKG/bin/sh
+ ln -s dash.1 $PKG/usr/share/man/man1/sh.1
+}