4ef8c5d3dd
Other changes: - Convert the package type to meson as there is no longer autotools support. Signed-off-by: Adam Duskett <Aduskett@gmail.com> [yann.morin.1998@free.fr: two spaces in hash file] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
24 lines
729 B
Makefile
24 lines
729 B
Makefile
################################################################################
|
|
#
|
|
# gupnp
|
|
#
|
|
################################################################################
|
|
|
|
GUPNP_VERSION_MAJOR = 1.2
|
|
GUPNP_VERSION = $(GUPNP_VERSION_MAJOR).2
|
|
GUPNP_SOURCE = gupnp-$(GUPNP_VERSION).tar.xz
|
|
GUPNP_SITE = http://ftp.gnome.org/pub/gnome/sources/gupnp/$(GUPNP_VERSION_MAJOR)
|
|
GUPNP_LICENSE = LGPL-2.0+
|
|
GUPNP_LICENSE_FILES = COPYING
|
|
GUPNP_INSTALL_STAGING = YES
|
|
GUPNP_DEPENDENCIES = host-pkgconf libglib2 libxml2 gssdp util-linux
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
GUPNP_CONF_OPTS += -Dintrospection=true
|
|
GUPNP_DEPENDENCIES += gobject-introspection
|
|
else
|
|
GUPNP_CONF_OPTS += -Dintrospection=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|