From 70af71a405810fbe28d3a6aadfe4db81f176360d Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Mon, 16 Nov 2015 10:17:46 +0000 Subject: [PATCH] dash: added new port --- dash/.footprint | 9 +++++++++ dash/.md5sum | 1 + dash/Pkgfile | 22 ++++++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 dash/.footprint create mode 100644 dash/.md5sum create mode 100644 dash/Pkgfile diff --git a/dash/.footprint b/dash/.footprint new file mode 100644 index 0000000..9ac88e9 --- /dev/null +++ b/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/dash/.md5sum b/dash/.md5sum new file mode 100644 index 0000000..31e9caf --- /dev/null +++ b/dash/.md5sum @@ -0,0 +1 @@ +560115ed2234988add8da59ee4015ee1 dash-20150713.tar.xz diff --git a/dash/Pkgfile b/dash/Pkgfile new file mode 100644 index 0000000..2ce6955 --- /dev/null +++ b/dash/Pkgfile @@ -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 +} -- 2.26.2