blob: 29fd5a2cb9472686565a1ba6375f57a90cc4f644 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require dbus.inc
inherit native
DEPENDS = "glib-2.0-native libxml2-native expat-native"
do_stage() {
oe_runmake install
autotools_stage_all
# for dbus-glib-native introspection generation
install -d ${STAGING_DATADIR}/dbus
install -m 0644 bus/session.conf ${STAGING_DATADIR}/dbus/session.conf
}
do_install() {
:
}
|