26 lines
695 B
Bash
26 lines
695 B
Bash
# Template file for 'bison'
|
|
pkgname=bison
|
|
version=3.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="help2man perl m4"
|
|
depends="m4"
|
|
short_desc="GNU yacc(1) replacement"
|
|
maintainer="maxice8 <thinkabit.ukim@gmail.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="http://www.gnu.org/software/bison/bison.html"
|
|
distfiles="${GNU_SITE}/bison/bison-${version}.tar.xz"
|
|
checksum=deec377b95aa72ec4e1a33fe2c938d2480749d740b5291a7cc1d77808d3710bf
|
|
alternatives="
|
|
yacc:yacc:/usr/bin/bison-yacc
|
|
yacc:yacc.1:/usr/share/man/man1/bison-yacc.1"
|
|
|
|
do_check() {
|
|
# Missing files for compilation
|
|
:
|
|
}
|
|
|
|
post_install() {
|
|
mv ${DESTDIR}/usr/bin/{yacc,bison-yacc}
|
|
mv ${DESTDIR}/usr/share/man/man1/{yacc,bison-yacc}.1
|
|
}
|