# HG changeset patch # User Christophe Lincoln # Date 1305874811 -7200 # Node ID 68049456cdd455c0026478be18828efca7faa898 # Parent 61d3b0ce3a2bd7d2a28af8f84546a8176fc0d69f bison: cross with CONFIGURE_ARGS diff -r 61d3b0ce3a2b -r 68049456cdd4 bison/receipt --- a/bison/receipt Fri May 20 08:58:54 2011 +0200 +++ b/bison/receipt Fri May 20 09:00:11 2011 +0200 @@ -6,20 +6,20 @@ SHORT_DESC="GNU parser generator." MAINTAINER="pankso@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.gz" -DEPENDS="m4" -BUILD_DEPENDS="m4" WEB_SITE="http://www.gnu.org/software/bison/" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" TAGS="parser language" +DEPENDS="m4" +BUILD_DEPENDS="m4" + # Rules to configure and make the package. compile_rules() { cd $src - ./configure && + ./configure $CONFIGURE_ARGS && echo '#define YYENABLE_NLS 1' >> config.h && - make && - make install + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. diff -r 61d3b0ce3a2b -r 68049456cdd4 flex/receipt --- a/flex/receipt Fri May 20 08:58:54 2011 +0200 +++ b/flex/receipt Fri May 20 09:00:11 2011 +0200 @@ -5,12 +5,13 @@ CATEGORY="development" SHORT_DESC="Flex is a fast lexical analyser generator." MAINTAINER="pankso@slitaz.org" -DEPENDS="bison" -BUILD_DEPENDS="bison" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://flex.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +DEPENDS="bison" +BUILD_DEPENDS="bison" + # Rules to configure and make the package. compile_rules() {