wok rev 24357
updated bacon (3.9.3 -> 4.4)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 03 16:37:54 2022 +0100 (2022-02-03) |
parents | c46e9f046d78 |
children | 88afc2f95640 |
files | bacon/description.txt bacon/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/bacon/description.txt Thu Feb 03 16:37:54 2022 +0100 1.3 @@ -0,0 +1,5 @@ 1.4 +BaCon is a free BASIC to C translator for Unix-based systems, 1.5 +which runs on most Unix, Linux or BSD platforms, including MacOSX. 1.6 +It intends to be a programming aid in creating tools which can be 1.7 +compiled on different platforms (32bit and 64bit), while trying to 1.8 +revive the days of the good old BASIC.
2.1 --- a/bacon/receipt Thu Feb 03 15:43:51 2022 +0100 2.2 +++ b/bacon/receipt Thu Feb 03 16:37:54 2022 +0100 2.3 @@ -1,13 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="bacon" 2.7 -VERSION="3.9.3" 2.8 +VERSION="4.4" 2.9 CATEGORY="development" 2.10 TAGS="basic C" 2.11 SHORT_DESC="Basic to C converter." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="MIT" 2.14 -WEB_SITE="http://www.basic-converter.org/" 2.15 +WEB_SITE="https://www.basic-converter.org/" 2.16 2.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.18 WGET_URL="${WEB_SITE}stable/$TARBALL" 2.19 @@ -23,11 +23,14 @@ 2.20 --mandir=/usr/share/man \ 2.21 $CONFIGURE_ARGS && 2.22 make -j 1 && 2.23 - make -j 1 DESTDIR=$DESTDIR install 2.24 + make DESTDIR=$DESTDIR install 2.25 + # Do not remove "-j 1" 2.26 } 2.27 2.28 # Rules to gen a SliTaz package suitable for Tazpkg. 2.29 genpkg_rules() 2.30 { 2.31 cp -a $install/usr $fs 2.32 + rm -rf $fs/usr/share/man 2.33 + rm -rf $fs/usr/share/BaCon/documentation 2.34 }