blob: aa0a152f196da8778665f2aa420d9594723b9536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
SUMMARY = "Helpers for interacting with Internet Gateway Devices over UPnP"
LICENSE = "LGPL-2.0-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
file://libgupnp-igd/gupnp-simple-igd.c;beginline=1;endline=21;md5=aa292c0d9390463a6e1055dc5fc68e80"
DEPENDS = "glib-2.0 gssdp gupnp sqlite3"
SRC_URI = "http://download.gnome.org/sources/${BPN}/1.2/${BPN}-${PV}.tar.xz"
SRC_URI += "file://run-ptest"
SRC_URI[sha256sum] = "4b5120098aa13edd27818ba9ee4d7fe961bf540bf50d056ff703c61545e02be1"
GTKDOC_MESON_OPTION = "gtk_doc"
inherit meson pkgconfig gtk-doc gobject-introspection ptest
do_install_ptest(){
cd ${B}/tests/gtest
for t in $(find . -type f -executable); do
install -D $t ${D}${PTEST_PATH}/test/$t
done
install -m 0644 ${S}/tests/gtest/*.xml ${D}${PTEST_PATH}/test/
}
|