wok view bacon/receipt @ rev 23855

Up dropbear (2020.79), nagios (4.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 16 20:15:47 2020 +0000 (2020-06-16)
parents b4a43344449e
children 9c973fb0a52b
line source
1 # SliTaz package receipt.
3 PACKAGE="bacon"
4 VERSION="3.9.3"
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="http://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 -j 1 DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/usr $fs
33 }