wok annotate gtick/receipt @ rev 13721

Add cherrytree: A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 21 08:15:57 2012 +0000 (2012-12-21)
parents 8b79c3ee7ac2
children d1c17bd2c2bc
rev   line source
pankso@628 1 # SliTaz package receipt.
pankso@628 2
pankso@628 3 PACKAGE="gtick"
pankso@865 4 VERSION="0.4.2"
pankso@628 5 CATEGORY="multimedia"
pankso@628 6 SHORT_DESC="GTick is a metronome application."
pankso@628 7 MAINTAINER="pankso@slitaz.org"
pankso@628 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@5001 9 DEPENDS="gtk+ xorg-libXdamage libsndfile libogg"
pascal@1460 10 BUILD_DEPENDS="pkg-config gtk+-dev xorg-xproto"
pankso@628 11 WEB_SITE="http://www.antcom.de/gtick/"
pankso@628 12 WGET_URL="http://www.antcom.de/gtick/download/$TARBALL"
pankso@628 13
pankso@628 14 # Rules to configure and make the package.
pankso@628 15 compile_rules()
pankso@628 16 {
pankso@628 17 cd $src
pankso@628 18 ./configure \
pankso@628 19 --prefix=/usr \
pankso@628 20 --mandir=/usr/share/man \
pascal@1460 21 $CONFIGURE_ARGS &&
pascal@1460 22 make &&
pankso@628 23 make DESTDIR=$PWD/_pkg install
pankso@628 24 }
pankso@628 25
pankso@628 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@628 27 genpkg_rules()
pankso@628 28 {
pankso@628 29 mkdir -p $fs/usr/share
pankso@628 30 cp -a $_pkg/usr/bin $fs/usr
pankso@628 31 }