wok-6.x view bison/receipt @ rev 24372

updated bison and bison-lang (3.5 -> 3.8.2)
author Hans-G?nter Theisgen
date Sat Feb 05 15:15:36 2022 +0100 (2022-02-05)
parents 1b90442b7758
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="bison"
4 VERSION="3.8.2"
5 CATEGORY="development"
6 TAGS="parser language"
7 SHORT_DESC="GNU parser generator."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://www.gnu.org/software/bison/"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="https://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
15 SUGGESTED="bison-lang"
16 DEPENDS="m4"
17 BUILD_DEPENDS="m4"
19 HOST_ARCH="i486 arm"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
29 # 2.6.5
30 # echo '#define YYENABLE_NLS 1' >> config.h &&
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/share
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib $fs/usr
40 cp -a $install/usr/share/aclocal $fs/usr/share
41 cp -a $install/usr/share/bison $fs/usr/share
42 }