CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Imported core-cross ports from 2.5
[crossrootfs.git] / bison / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: The GNU Project parser generator
2# URL: http://www.gnu.org/software/bison/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX ARM System Team
5
6name=bison
7version=2.4.1
8release=1
9source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
10
11build() {
12 cd $name-$version
13 ./configure --build=$CHOST \
14 --host=$CTARGET \
15 --prefix=/usr\
16 --mandir=/usr/man \
17 --disable-nls
18 make
19 make DESTDIR=$PKG install
20 rm -rf $PKG/usr/share/info
21 rm $PKG/usr/share/bison/README
22}