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
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
6 name=dash
7 version=0.5.9.1
8 release=1
9 source=(http://gondor.apana.org.au/~herbert/dash/files/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
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 }