mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-21 02:03:30 +00:00
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
23 lines
618 B
BlitzBasic
23 lines
618 B
BlitzBasic
SUMMARY = "dbus forwarding daemon"
|
|
LICENSE = "LGPLv2.1+"
|
|
LIC_FILES_CHKSUM = "file://dbus-daemon-proxy.c;endline=19;md5=41df6d21fe1c97d6a1cc22a5bf374cba"
|
|
DEPENDS = "dbus dbus-glib"
|
|
SRCREV = "1226a0a1374628ff191f6d8a56000be5e53e7608"
|
|
PV = "0.0.0+gitr${SRCPV}"
|
|
PR = "r1"
|
|
|
|
ASNEEDED_pn-dbus-daemon-proxy = ""
|
|
|
|
SRC_URI = "git://git.collabora.co.uk/git/user/alban/dbus-daemon-proxy"
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_compile() {
|
|
${CC} ${LDFLAGS} `pkg-config --cflags --libs dbus-glib-1` -o dbus-daemon-proxy dbus-daemon-proxy.c
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 dbus-daemon-proxy ${D}${bindir}
|
|
}
|
|
|