diff options
author | Ross Burton <ross.burton@intel.com> | 2012-12-20 11:26:37 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-01-09 11:42:46 +0100 |
commit | 53a856a2478fee166c0f64ebce4462414718a261 (patch) | |
tree | 467d52b423c171f1590925e69cba94d617e1b624 /meta-multimedia/recipes-multimedia | |
parent | 9b1824a02b441488088e3462f6bc13851c730c8a (diff) | |
download | meta-openembedded-53a856a2478fee166c0f64ebce4462414718a261.tar.gz |
renderer-service-upnp: add 0.3.0
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta-multimedia/recipes-multimedia')
-rw-r--r-- | meta-multimedia/recipes-multimedia/dleyna/renderer-service-upnp_0.3.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/dleyna/renderer-service-upnp_0.3.0.bb b/meta-multimedia/recipes-multimedia/dleyna/renderer-service-upnp_0.3.0.bb new file mode 100644 index 000000000..cdce8d527 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/dleyna/renderer-service-upnp_0.3.0.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "discover and manipulate UPNP/DLNA media renderers" | ||
2 | HOMEPAGE = "https://01.org/dleyna/" | ||
3 | |||
4 | LICENSE = "LGPLv2.1" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \ | ||
6 | file://src/renderer-service-upnp.c;beginline=1;endline=21;md5=c25c3082684eb4ca87474b7528c6dc15" | ||
7 | |||
8 | DEPENDS = "dbus glib-2.0 gssdp gupnp gupnp-av gupnp-dlna libsoup-2.4" | ||
9 | |||
10 | SRC_URI = "https://github.com/01org/${BPN}/archive/v${PV}.zip" | ||
11 | SRC_URI[md5sum] = "1e19349712a34dd56a14fc280b5d8b74" | ||
12 | SRC_URI[sha256sum] = "d6623d98dd35ee32bc08349b4a22d12101dda38a2ece1e468ff0160e519a854d" | ||
13 | |||
14 | inherit autotools | ||
15 | |||
16 | do_install_append() { | ||
17 | install -d ${D}${bindir} | ||
18 | install -m 0755 test/rendererconsole.py ${D}${bindir} | ||
19 | } | ||
20 | |||
21 | PACKAGES =+ "${PN}-tests" | ||
22 | |||
23 | RDEPENDS_${PN}-tests = "python-dbus python-json python-misc python-pkgutil python-xml" | ||
24 | |||
25 | FILES_${PN} += "${datadir}/dbus-1/services/*.service" | ||
26 | # When we have GI, package cap | ||
27 | FILES_${PN}-tests = "${bindir}/rendererconsole.py" | ||