blob: 8114cd795b564ed82e7baf0bc775e6924ec8ff2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require dbus.inc
inherit native
DEPENDS = "glib-2.0-native libxml2-native expat-native"
PR = "r6"
EXTRA_OECONF_X = "--without-x"
do_install() {
autotools_do_install
# for dbus-glib-native introspection generation
install -d ${D}${datadir}/dbus/
install -m 0644 bus/session.conf ${D}${datadir}/dbus/session.conf
# dbus-glib-native and dbus-glib need this xml file
cd ${S}
./bus/dbus-daemon --introspect > ${D}${datadir}/dbus/dbus-bus-introspect.xml
}
|