CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
dash: updated to 0.5.9.1
[crossrootfs.git] / dash / Pkgfile
CommitLineData
70af71a4
VM
1# Description: The Almquist shell, a POSIX-compliant /bin/sh implementation
2# URL: http://gondor.apana.org.au/~herbert/dash/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5
6name=dash
ceaaca5d 7version=0.5.9.1
70af71a4 8release=1
ceaaca5d 9source=(http://gondor.apana.org.au/~herbert/dash/files/$name-$version.tar.gz)
70af71a4
VM
10
11build() {
12 cd $name-$version
70af71a4
VM
13 ./configure --build=$CHOST \
14 --host=$CTARGET \
15 --prefix= \
16 --mandir=/usr/share/man
17 make
18 make DESTDIR=$PKG install
19 ln -s dash $PKG/bin/sh
20 ln -s dash.1 $PKG/usr/share/man/man1/sh.1
21}