wok view dbus-python/receipt @ rev 17957

libsecret, libwebp: fix MAINTAINER
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 16 16:12:16 2015 +0200 (2015-04-16)
parents c1481e1d02ec
children 16df76e1fc6a
line source
1 # SliTaz package receipt.
3 PACKAGE="dbus-python"
4 VERSION="1.1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="D-Bus python binding."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://freedesktop.org/wiki/Software/DBusBindings"
11 WGET_URL="http://dbus.freedesktop.org/releases/dbus-python/$TARBALL"
13 DEPENDS="dbus glib libgio python dbus-glib"
14 BUILD_DEPENDS="dbus-dev glib-dev libgio-dev python-dev dbus-glib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/python* $fs/usr/lib
29 rm $fs/usr/lib/python*/*/*.la
30 }