wok view bison/receipt @ rev 22247

updated xorg-xauth (1.0.7 -> 1.1)
author Hans-G?nter Theisgen
date Tue Nov 12 16:18:33 2019 +0100 (2019-11-12)
parents f4c22f009037
children 1b90442b7758
line source
1 # SliTaz package receipt.
3 PACKAGE="bison"
4 VERSION="2.6.5"
5 CATEGORY="development"
6 SHORT_DESC="GNU parser generator."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.gnu.org/software/bison/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="parser language"
13 HOST_ARCH="i486 arm"
15 DEPENDS="m4"
16 BUILD_DEPENDS="m4"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 echo '#define YYENABLE_NLS 1' >> config.h &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 cp -a $install/usr/share/aclocal $fs/usr/share
33 cp -a $install/usr/share/bison $fs/usr/share
34 }