core/bison/Pkgfile

19 lines
448 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: The GNU Project parser generator
2021-03-10 10:08:28 +01:00
# URL: https://www.gnu.org/software/bison/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: gettext
2006-02-23 16:26:10 +01:00
name=bison
2021-09-26 12:56:42 +02:00
version=3.8.2
2019-09-15 12:38:24 +02:00
release=1
2020-06-04 13:46:17 +02:00
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
2021-03-10 10:08:28 +01:00
cd $name-$version
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/{doc,info}
2021-09-11 18:20:49 +02:00
rm $PKG/usr/share/bison/README.md
2006-02-23 16:26:10 +01:00
}