1################################################################################ 2# 3# gupnp-tools 4# 5################################################################################ 6 7GUPNP_TOOLS_VERSION_MAJOR = 0.10 8GUPNP_TOOLS_VERSION = $(GUPNP_TOOLS_VERSION_MAJOR).0 9GUPNP_TOOLS_SOURCE = gupnp-tools-$(GUPNP_TOOLS_VERSION).tar.xz 10GUPNP_TOOLS_SITE = \ 11 http://ftp.gnome.org/pub/gnome/sources/gupnp-tools/$(GUPNP_TOOLS_VERSION_MAJOR) 12GUPNP_TOOLS_LICENSE = GPL-2.0+ 13GUPNP_TOOLS_LICENSE_FILES = COPYING 14GUPNP_TOOLS_INSTALL_STAGING = YES 15GUPNP_TOOLS_DEPENDENCIES = \ 16 host-pkgconf \ 17 libglib2 \ 18 libxml2 \ 19 gssdp \ 20 gupnp \ 21 libsoup \ 22 libgtk3 \ 23 $(TARGET_NLS_DEPENDENCIES) 24 25GUPNP_TOOLS_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS) 26 27ifeq ($(BR2_PACKAGE_GUPNP_AV),y) 28GUPNP_TOOLS_CONF_OPTS += -Dav-tools=true 29GUPNP_TOOLS_DEPENDENCIES += gupnp-av 30else 31GUPNP_TOOLS_CONF_OPTS += -Dav-tools=false 32endif 33 34ifeq ($(BR2_PACKAGE_GTKSOURCEVIEW),y) 35GUPNP_TOOLS_DEPENDENCIES += gtksourceview 36endif 37 38$(eval $(meson-package)) 39