blob: 8c025c837d97f324beb311ab145f292965aaff31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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}/
}
|