blob: 6e9a6d65115b083a62508e2cf39906893970f64a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "Util to wait for a dbus signal"
SECTION = "base"
LICENSE = "GPL"
DEPENDS = "dbus"
PV = "0.0+svnr${SRCREV}"
PR = "r1"
SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=dbus-wait;proto=http"
S = "${WORKDIR}/${PN}"
CFLAGS += "`pkg-config --libs dbus-1`"
do_install () {
install -d ${D}${bindir}/
install ${S}/dbus-wait ${D}${bindir}/
}
|