blob: 6ce96316165606802a39afe9507281e2e0710e3d [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "UPnP framework"
2DESCRIPTION = "GUPnP is an elegant, object-oriented open source framework for creating UPnP devices and control points, written in C using GObject and libsoup. The GUPnP API is intended to be easy to use, efficient and flexible. It provides the same set of features as libupnp, but shields the developer from most of UPnP's internals."
3LICENSE = "LGPLv2+"
4
5DEPENDS = "e2fsprogs gssdp libsoup-2.4 libxml2"
6
7inherit autotools pkgconfig vala gobject-introspection
8
9# Copy vapigen.m4 so that it doesn't get removed by vala class
10# (normally this would be the right thing to do, but in gupnp the vapigen.m4 has only a custom macro)
11do_configure_prepend() {
12 cp -f ${S}/m4/vapigen.m4 ${S}/m4/vapigen-custom.m4 || true
13}
14
15FILES_${PN} = "${libdir}/*.so.*"
16FILES_${PN}-dev += "${bindir}/gupnp-binding-tool"
17
18RDEPENDS_${PN}-dev = "python-textutils python-xml"
19
20SYSROOT_PREPROCESS_FUNCS += "gupnp_sysroot_preprocess"
21
22gupnp_sysroot_preprocess () {
23 install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/
24 install -m 755 ${D}${bindir}/gupnp-binding-tool ${SYSROOT_DESTDIR}${bindir_crossscripts}/
25}