wok annotate gtkaml/receipt @ rev 15669

iptables: rm *.pc files, mv bin files to /usr/sbin
author Richard Dunbar <mojo@slitaz.org>
date Wed Dec 18 00:14:55 2013 +0000 (2013-12-18)
parents 4eeccb502cbc
children
rev   line source
pankso@9323 1 # SliTaz package receipt.
pankso@9323 2
pankso@9323 3 PACKAGE="gtkaml"
pankso@9323 4 VERSION="0.4.2"
pankso@9323 5 CATEGORY="development"
pankso@9323 6 SHORT_DESC="Markup language based on Vala to create Gtk+ apps in XML"
pankso@9323 7 MAINTAINER="pankso@slitaz.org"
pascal@15589 8 LICENSE="LGPL2.1"
pankso@9323 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@9323 10 WEB_SITE="http://code.google.com/p/gtkaml/"
pankso@9323 11 WGET_URL="http://gtkaml.googlecode.com/files/$TARBALL"
pankso@9323 12
pascal@15589 13 DEPENDS="gtk+ libxml2"
pascal@15589 14 BUILD_DEPENDS="gtk+-dev libxml2-dev vala"
pascal@15589 15
pankso@9323 16 # Rules to configure and make the package.
pankso@9323 17 compile_rules()
pankso@9323 18 {
pankso@9323 19 cd $src
pankso@9323 20 ./configure && make && make install
pankso@9323 21 }
pankso@9323 22
pankso@9323 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@9323 24 genpkg_rules()
pankso@9323 25 {
pankso@9323 26 mkdir -p $fs/usr
pascal@15589 27 cp -a $install/usr/bin $fs/usr
pascal@15589 28 cp -a $install/usr/share $fs/usr
pankso@9323 29 }