CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
dash: added new port
authorVictor Martinez <pitillo@ono.com>
Mon, 16 Nov 2015 10:17:46 +0000 (10:17 +0000)
committerVictor Martinez <pitillo@ono.com>
Mon, 16 Nov 2015 10:17:46 +0000 (10:17 +0000)
dash/.footprint [new file with mode: 0644]
dash/.md5sum [new file with mode: 0644]
dash/Pkgfile [new file with mode: 0644]

diff --git a/dash/.footprint b/dash/.footprint
new file mode 100644 (file)
index 0000000..9ac88e9
--- /dev/null
@@ -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/dash/.md5sum b/dash/.md5sum
new file mode 100644 (file)
index 0000000..31e9caf
--- /dev/null
@@ -0,0 +1 @@
+560115ed2234988add8da59ee4015ee1  dash-20150713.tar.xz
diff --git a/dash/Pkgfile b/dash/Pkgfile
new file mode 100644 (file)
index 0000000..2ce6955
--- /dev/null
@@ -0,0 +1,22 @@
+# 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
+}