wok view bacon/receipt @ rev 21357

updated lilo (24.0 -> 24.2)
author Hans-G?nter Theisgen
date Sun Apr 21 10:07:03 2019 +0100 (2019-04-21)
parents
children 66359cd3b1f7
line source
1 # SliTaz package receipt.
3 PACKAGE="bacon"
4 VERSION="3.8.1"
5 CATEGORY="development"
6 SHORT_DESC="Basic to c converter"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.basic-converter.org/"
11 WGET_URL="${WEB_SITE}stable/$TARBALL"
12 TAGS="basic C"
14 DEPENDS="gtk+"
15 BUILD_DEPENDS="gtk+-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make -j 1 DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs
31 }