wok diff bacon/receipt @ rev 24149

gcc: remove obsolete gawk comment
author Richard Dunbar <mojo@slitaz.org>
date Sat Nov 27 15:12:31 2021 -0500 (2021-11-27)
parents b4a43344449e
children 9c973fb0a52b
line diff
     1.1 --- a/bacon/receipt	Tue Feb 19 10:10:09 2019 +0100
     1.2 +++ b/bacon/receipt	Sat Nov 27 15:12:31 2021 -0500
     1.3 @@ -1,15 +1,16 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="bacon"
     1.7 -VERSION="3.8.1"
     1.8 +VERSION="3.9.3"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Basic to c converter"
    1.11 +TAGS="basic C"
    1.12 +SHORT_DESC="Basic to C converter."
    1.13  MAINTAINER="pascal.bellard@slitaz.org"
    1.14  LICENSE="MIT"
    1.15 +WEB_SITE="http://www.basic-converter.org/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WEB_SITE="http://www.basic-converter.org/"
    1.19  WGET_URL="${WEB_SITE}stable/$TARBALL"
    1.20 -TAGS="basic C"
    1.21  
    1.22  DEPENDS="gtk+"
    1.23  BUILD_DEPENDS="gtk+-dev"
    1.24 @@ -17,8 +18,9 @@
    1.25  # Rules to configure and make the package.
    1.26  compile_rules()
    1.27  {
    1.28 -	./configure --prefix=/usr \
    1.29 -		--mandir=/usr/share/man \
    1.30 +	./configure			\
    1.31 +		--prefix=/usr		\
    1.32 +		--mandir=/usr/share/man	\
    1.33  		$CONFIGURE_ARGS &&
    1.34  	make -j 1 &&
    1.35  	make -j 1 DESTDIR=$DESTDIR install
    1.36 @@ -27,5 +29,5 @@
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38  genpkg_rules()
    1.39  {
    1.40 -	cp -a $install/usr $fs
    1.41 +	cp -a $install/usr	$fs
    1.42  }