wok view gtkaml/receipt @ rev 15601

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