# byacc - Berkeley yacc, in place of bison.
name=byacc
version=20260426
release=1
desc="Berkeley LALR parser generator"
url="https://invisible-island.net/byacc/"
license="Public-Domain"
depend="glibc"
provides="yacc"
source="byacc.tar.gz::https://invisible-island.net/datafiles/release/byacc.tar.gz"
sha256="SKIP"

build() {
	cd byacc-*
	./configure --prefix=/usr --program-prefix=
	make -j"$JOBS"
}

package() {
	cd byacc-*
	make DESTDIR="$pkgdir" install
}
