wok view bacon/receipt @ rev 20834

Remove pidgin-facebookchat: replaced by purple-facebook
author Richard Dunbar <mojo@slitaz.org>
date Tue Feb 19 13:18:24 2019 -0500 (2019-02-19)
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 }