wok-undigest view libdesktop-agnostic/receipt @ rev 338

ettercap: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 15 15:53:48 2011 +0200 (2011-06-15)
parents 203ec3369b71
children e93f36553cc9
line source
1 # SliTaz package receipt.
3 PACKAGE="libdesktop-agnostic"
4 VERSION="0.3.90"
5 CATEGORY="x-window"
6 SHORT_DESC="Config API, a unified vfs API, and a desktop item editor for GLib."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glib gobject-introspection"
9 BUILD_DEPENDS="$DEPENDS python python-dev glib-dev vala gobject-introspection-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="https://launchpad.net/libdesktop-agnostic"
12 WGET_URL="http://launchpad.net/libdesktop-agnostic/0.4/$VERSION/+download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./waf configure \
19 --config-backends=keyfile \
20 --vfs-backends=gio \
21 --desktop-entry-backends=glib \
22 --disable-gui &&
23 ./waf &&
24 ./waf install \
25 --prefix=/usr \
26 --destdir=$PWD/_pkg
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $_pkg/etc $fs
34 cp -a $_pkg/usr/bin $fs/usr
35 }