diff options
author | Fredrik Rinnestam <fredrik@crux.nu> | 2015-06-21 18:48:39 +0200 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2015-06-21 18:48:39 +0200 |
commit | e9045fef1c2719d9e43f46b16790408b759d864f (patch) | |
tree | 1f45abc2f8722b93e6693e90fbf1364a6ab0d382 /dash | |
parent | 59493eeb273677bfacb3157b9a9e8a8c509cc88d (diff) | |
download | core-e9045fef1c2719d9e43f46b16790408b759d864f.tar.gz core-e9045fef1c2719d9e43f46b16790408b759d864f.tar.xz |
dash: changed maintainer line
Diffstat (limited to 'dash')
-rw-r--r-- | dash/.footprint | 8 | ||||
-rw-r--r-- | dash/.md5sum | 1 | ||||
-rw-r--r-- | dash/Pkgfile | 18 |
3 files changed, 27 insertions, 0 deletions
diff --git a/dash/.footprint b/dash/.footprint new file mode 100644 index 00000000..115f7b5c --- /dev/null +++ b/dash/.footprint @@ -0,0 +1,8 @@ +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/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/dash.1.gz +lrwxrwxrwx root/root usr/man/man1/sh.1.gz -> dash.1.gz diff --git a/dash/.md5sum b/dash/.md5sum new file mode 100644 index 00000000..3a241ce8 --- /dev/null +++ b/dash/.md5sum @@ -0,0 +1 @@ +f8db76d1b01fbc0582c63401ac998445 dash-20150602.tar.xz diff --git a/dash/Pkgfile b/dash/Pkgfile new file mode 100644 index 00000000..dfc4577e --- /dev/null +++ b/dash/Pkgfile @@ -0,0 +1,18 @@ +# 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 + +name=dash +version=20150602 +release=1 +source=(http://jue.li/crux/files/$name-$version.tar.xz) + +build() { + cd $name-$version + ./autogen.sh + ./configure --prefix= --mandir=/usr/man + make + make DESTDIR=$PKG install + ln -s dash $PKG/bin/sh + ln -s dash.1 $PKG/usr/man/man1/sh.1 +} |