1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

Add dbus-wait

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4910 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2008-07-21 11:50:53 +00:00
parent b4ddca7196
commit 582c57c9c1
+16
View File
@@ -0,0 +1,16 @@
DESCRIPTION = "Util to wait for a dbus signal"
SECTION = "base"
LICENSE = "GPL"
DEPENDS = "dbus"
PV = "0.0+svnr${SRCREV}"
SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=dbus-wait;proto=http"
S = "${WORKDIR}/${PN}"
LDFLAGS += "`pkg-config --libs dbus-1`"
do_install () {
install -d ${D}${bindir}/
install ${S}/dbus-wait ${D}${bindir}/
}