milis/talimatname/temel/bison/talimat

22 lines
516 B
Plaintext
Raw Normal View History

2016-02-24 01:27:23 +01:00
# Description: The Bison package contains a parser generator
# URL: http://www.gnu.org/software/bison/
# Maintainers: Robert Corbett,Richard Stallman,Wilfred Hansen
2016-03-20 02:15:25 +01:00
# Packager: milisarge@gmail.com
2016-02-24 01:27:23 +01:00
name=bison
version=3.0.4
release=2
source=(http://ftp.gnu.org/gnu/bison/bison-$version.tar.xz)
build()
{
cd bison-$version
./configure --prefix=/usr \
--docdir=/usr/share/doc/$name-$version
make
make check||true
make DESTDIR=$PKG install
2016-03-07 13:45:49 +01:00
rm -r $PKG/usr/share/info $PKG/usr/share/doc/
rm $PKG/usr/share/bison/README
2016-02-24 01:27:23 +01:00
}