wok view dbus-glib/receipt @ rev 13383

Add serd & sord
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 22 23:05:11 2012 +0200 (2012-09-22)
parents 3141a549cd9a
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="dbus-glib"
4 VERSION="0.100"
5 CATEGORY="x-window"
6 SHORT_DESC="D-Bus glib binding."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://freedesktop.org/wiki/Software/DBusBindings"
10 WGET_URL="http://dbus.freedesktop.org/releases/dbus-glib/$TARBALL"
11 CROSS="bug: can not run test program"
13 DEPENDS="dbus libgio expat"
14 BUILD_DEPENDS="dbus-dev glib-dev libgio-dev expat-dev \
15 pkg-config gettext"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --build=$HOST_SYSTEM \
24 --host=$HOST_SYSTEM &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }