wok view dbus-python/receipt @ rev 23950

syslinux/taziso: fix tazbootkey
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 20 21:21:51 2020 +0000 (2020-09-20)
parents 16df76e1fc6a
children bfabe25c21ff
line source
1 # SliTaz package receipt.
3 PACKAGE="dbus-python"
4 VERSION="1.2.14"
5 CATEGORY="system-tools"
6 SHORT_DESC="D-Bus python binding."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://freedesktop.org/wiki/Software/DBusBindings/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://dbus.freedesktop.org/releases/dbus-python/$TARBALL"
14 DEPENDS="dbus dbus-glib glib libgio python"
15 BUILD_DEPENDS="dbus-dev dbus-glib-dev glib-dev libgio-dev python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/python* $fs/usr/lib
31 rm $fs/usr/lib/python*/*/*.la
32 }