# HG changeset patch # User Hans-G?nter Theisgen # Date 1643902674 -3600 # Node ID 9c973fb0a52bcda86a2bdc686cd47bc5ad11edae # Parent c46e9f046d789a372cf3cc9a9210e7f1adace256 updated bacon (3.9.3 -> 4.4) diff -r c46e9f046d78 -r 9c973fb0a52b bacon/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bacon/description.txt Thu Feb 03 16:37:54 2022 +0100 @@ -0,0 +1,5 @@ +BaCon is a free BASIC to C translator for Unix-based systems, +which runs on most Unix, Linux or BSD platforms, including MacOSX. +It intends to be a programming aid in creating tools which can be +compiled on different platforms (32bit and 64bit), while trying to +revive the days of the good old BASIC. diff -r c46e9f046d78 -r 9c973fb0a52b bacon/receipt --- a/bacon/receipt Thu Feb 03 15:43:51 2022 +0100 +++ b/bacon/receipt Thu Feb 03 16:37:54 2022 +0100 @@ -1,13 +1,13 @@ # SliTaz package receipt. PACKAGE="bacon" -VERSION="3.9.3" +VERSION="4.4" CATEGORY="development" TAGS="basic C" SHORT_DESC="Basic to C converter." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="http://www.basic-converter.org/" +WEB_SITE="https://www.basic-converter.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="${WEB_SITE}stable/$TARBALL" @@ -23,11 +23,14 @@ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make -j 1 && - make -j 1 DESTDIR=$DESTDIR install + make DESTDIR=$DESTDIR install + # Do not remove "-j 1" } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cp -a $install/usr $fs + rm -rf $fs/usr/share/man + rm -rf $fs/usr/share/BaCon/documentation }