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
1 changed files with 16 additions and 0 deletions

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}/
}