wok view python-edbus/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 86790a278e70
children 192db54e5c3d
line source
1 # SliTaz package receipt.
3 PACKAGE="python-edbus"
4 VERSION="1.7.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Python bindings for edbus"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="LGPL2.1"
9 SOURCE="python-e_dbus"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="https://www.enlightenment.org/"
12 WGET_URL="http://download.enlightenment.org/releases/BINDINGS/python/$TARBALL"
13 TAGS="e enlightenment python"
15 DEPENDS="edbus dbus-python dbus-helper"
16 BUILD_DEPENDS="edbus-dev python-dev dbus-python-dev python-cython dbus-helper
17 autoconf automake git subversion libtool file"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./autogen.sh &&
23 ./configure --prefix=/usr &&
24 make $MAKEFLAGS all && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/python2.7 $fs/usr/lib
32 }