summaryrefslogtreecommitdiff
path: root/recipes/bustle
diff options
context:
space:
mode:
authorDenis 'Gnutoo' Carikli <GNUtoo@no-log.org>2009-04-27 17:47:41 +0200
committerDenis 'Gnutoo' Carikli <GNUtoo@no-log.org>2009-04-27 17:47:41 +0200
commit691fd364dc741a8df339a1c3f74d941589ebaa99 (patch)
tree17aca55ad50553f58defacb24c377cd8777cf966 /recipes/bustle
parent413cc98aa563c9e6104d1104d5b24987ab9d12f8 (diff)
parenteee57a831f63162a5c40c7ed53805f8d78a058bf (diff)
Merge branch 'org.openembedded.dev' of git://git.openembedded.net/openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/bustle')
-rw-r--r--recipes/bustle/bustle-dbus-monitor_0.2.0.bb19
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/bustle/bustle-dbus-monitor_0.2.0.bb b/recipes/bustle/bustle-dbus-monitor_0.2.0.bb
new file mode 100644
index 0000000000..4d4768f4de
--- /dev/null
+++ b/recipes/bustle/bustle-dbus-monitor_0.2.0.bb
@@ -0,0 +1,19 @@
+DESCRIPTION = "The monitoring utilitiy for the Bustle D-Bus diagram application."
+HOMEPAGE = "http://www.willthompson.co.uk/bustle"
+DEPENDS = "dbus glib-2.0"
+LICENSE = "LGPL"
+SECTION = "console/network"
+
+SRC_URI = "http://www.willthompson.co.uk/bustle/releases/bustle-${PV}.tar.gz"
+S = "${WORKDIR}/bustle-${PV}"
+
+do_compile() {
+ ${CC} ${CFLAGS} ${LDFLAGS} `pkg-config --cflags --libs dbus-1 glib-2.0` -o bustle-dbus-monitor bustle-dbus-monitor.c
+}
+
+do_install() {
+ install -d ${D}${sbindir}
+ install -m 0755 bustle-dbus-monitor ${D}${sbindir}
+}
+
+FILES_${PN} += "${sbindir}"