dbus-daemon-proxy: new recipe; dbus-forwarder
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>
Thu, 29 Apr 2010 12:59:04 +0000 (14:59 +0200)
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>
Thu, 29 Apr 2010 14:19:00 +0000 (16:19 +0200)
recipes/dbus/dbus-daemon-proxy_git.bb [new file with mode: 0644]

diff --git a/recipes/dbus/dbus-daemon-proxy_git.bb b/recipes/dbus/dbus-daemon-proxy_git.bb
new file mode 100644 (file)
index 0000000..99f4372
--- /dev/null
@@ -0,0 +1,18 @@
+DESCRIPTION = "dbus forwarding daemon"
+LICENSE = "GPL"
+DEPENDS = "dbus dbus-glib"
+SRCREV = "1226a0a1374628ff191f6d8a56000be5e53e7608"
+PV = "0.0.0+gitr${SRCPV}"
+
+SRC_URI = "git://git.collabora.co.uk/git/user/alban/dbus-daemon-proxy;protocol=git"
+S = "${WORKDIR}/git"
+
+do_compile() {
+       ${CC} `pkg-config --cflags --libs dbus-glib-1` -o dbus-daemon-proxy dbus-daemon-proxy.c
+}
+
+do_install() {
+       install -d ${D}${bindir}
+       install -m 0755 dbus-daemon-proxy ${D}${bindir}
+}
+