core/bison/Pkgfile

19 lines
501 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: The GNU Project parser generator
2020-06-04 13:46:17 +02:00
# URL: https://www.gnu.org/software/bison/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2020-05-10 11:09:28 +02:00
# Depends on: gettext
2006-02-23 16:26:10 +01:00
name=bison
2021-01-25 12:52:23 +01:00
version=3.7.5
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() {
cd $name-$version
./configure --prefix=/usr --disable-nls
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2018-10-31 16:28:14 +01:00
rm -r $PKG/usr/share/{doc,info}
2019-06-29 13:14:37 +02:00
rm $PKG/usr/share/bison/{README.md,skeletons/README-D.txt}
2006-02-23 16:26:10 +01:00
}