wok view bacon/receipt @ 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 66359cd3b1f7
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="bacon"
4 VERSION="4.4"
5 CATEGORY="development"
6 TAGS="basic C"
7 SHORT_DESC="Basic to C converter."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://www.basic-converter.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}stable/$TARBALL"
15 DEPENDS="gtk+"
16 BUILD_DEPENDS="gtk+-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 # Do not remove "-j 1"
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs
34 rm -rf $fs/usr/share/man
35 rm -rf $fs/usr/share/BaCon/documentation
36 }