Juergen Daubert
d692846375
This reverts commit ccf8a0cfc2b194c07ac0450e0317ae6de1bb0df5. Bison 2.4 breaks at least libIDL and there is a bug-report that gcc 4.3.2 build is broken [1] as well, but can not reproduce this. [1] http://www.mail-archive.com/bug-bison@gnu.org/msg01218.html
19 lines
433 B
Plaintext
19 lines
433 B
Plaintext
# Description: The GNU Project parser generator
|
|
# URL: http://www.gnu.org/software/bison/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=bison
|
|
version=2.3
|
|
release=2
|
|
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/info
|
|
rm $PKG/usr/share/bison/README
|
|
}
|