dash: changed maintainer line

This commit is contained in:
Fredrik Rinnestam 2015-06-21 18:48:39 +02:00
parent 59493eeb27
commit e9045fef1c
3 changed files with 27 additions and 0 deletions

8
dash/.footprint Normal file
View File

@ -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

1
dash/.md5sum Normal file
View File

@ -0,0 +1 @@
f8db76d1b01fbc0582c63401ac998445 dash-20150602.tar.xz

18
dash/Pkgfile Normal file
View File

@ -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
}