blob: 14a676e01701edf7011ffd1b4610269b0fc9216f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
DESCRIPTION = "Mickey's DBus introspection and calling Program"
AUTHOR = "Michael 'Mickey' Lauer <mlauer@vanille-media.de>"
SECTION = "console/network"
require python-helpers.inc
SRCREV = "${FSO_PYTHONHELPERS_SRCREV}"
PV = "0.9.2+gitr${SRCPV}"
PR = "r2"
do_install() {
install -d ${D}${bindir}
install -m 0755 mickeydbus/mdbus ${D}${bindir}
}
RDEPENDS_${PN} = "\
python-dbus \
python-pygobject \
python-pprint \
python-xml \
"
PACKAGE_ARCH_${PN} = "all"
|