wok-6.x rev 20820
Add bacon & qb2c
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Feb 19 10:10:09 2019 +0100 (2019-02-19) |
parents | 7c0af4bc8b65 |
children | 699d96f4d881 |
files | bacon/receipt qb2c/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/bacon/receipt Tue Feb 19 10:10:09 2019 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="bacon" 1.7 +VERSION="3.8.1" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Basic to c converter" 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="MIT" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://www.basic-converter.org/" 1.14 +WGET_URL="${WEB_SITE}stable/$TARBALL" 1.15 +TAGS="basic C" 1.16 + 1.17 +DEPENDS="gtk+" 1.18 +BUILD_DEPENDS="gtk+-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + ./configure --prefix=/usr \ 1.24 + --mandir=/usr/share/man \ 1.25 + $CONFIGURE_ARGS && 1.26 + make -j 1 && 1.27 + make -j 1 DESTDIR=$DESTDIR install 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + cp -a $install/usr $fs 1.34 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/qb2c/receipt Tue Feb 19 10:10:09 2019 +0100 2.3 @@ -0,0 +1,27 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="qb2c" 2.7 +VERSION="3.43" 2.8 +CATEGORY="development" 2.9 +SHORT_DESC="QuickBasic to ANSI C converter" 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +LICENSE="unknown" 2.12 +TARBALL="$PACKAGE-$VERSION.tgz" 2.13 +WEB_SITE="https://fossies.org/linux/misc/old/$TARBALL/" 2.14 +WGET_URL="${WEB_SITE%/}" 2.15 +TAGS="basic C" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + make 2.21 +} 2.22 + 2.23 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.24 +genpkg_rules() 2.25 +{ 2.26 + mkdir -p $fs/usr/bin $fs/usr/lib $install/usr/share/doc 2.27 + cp -a $src/qb2c $src/bcpp $src/calib $fs/usr/bin 2.28 + cp -a $src/libqbX11.a $fs/usr/lib 2.29 + cp -a $src/*.txt $src/README $install/usr/share/doc 2.30 +}