wok annotate bacon/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents b4a43344449e
children 9c973fb0a52b
rev   line source
pascal@20820 1 # SliTaz package receipt.
pascal@20820 2
pascal@20820 3 PACKAGE="bacon"
Hans-G?nter@22528 4 VERSION="3.9.3"
pascal@20820 5 CATEGORY="development"
Hans-G?nter@22528 6 TAGS="basic C"
Hans-G?nter@22528 7 SHORT_DESC="Basic to C converter."
pascal@20820 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20820 9 LICENSE="MIT"
Hans-G?nter@22528 10 WEB_SITE="http://www.basic-converter.org/"
Hans-G?nter@22528 11
pascal@20820 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20820 13 WGET_URL="${WEB_SITE}stable/$TARBALL"
pascal@20820 14
pascal@20820 15 DEPENDS="gtk+"
pascal@20820 16 BUILD_DEPENDS="gtk+-dev"
pascal@20820 17
pascal@20820 18 # Rules to configure and make the package.
pascal@20820 19 compile_rules()
pascal@20820 20 {
Hans-G?nter@22528 21 ./configure \
Hans-G?nter@22528 22 --prefix=/usr \
Hans-G?nter@22528 23 --mandir=/usr/share/man \
pascal@20820 24 $CONFIGURE_ARGS &&
pascal@20820 25 make -j 1 &&
pascal@20820 26 make -j 1 DESTDIR=$DESTDIR install
pascal@20820 27 }
pascal@20820 28
pascal@20820 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20820 30 genpkg_rules()
pascal@20820 31 {
Hans-G?nter@22528 32 cp -a $install/usr $fs
pascal@20820 33 }