Files
buildroot/package/gupnp-tools/gupnp-tools.mk
Bernd Kuhls a644ea1e2d package/gupnp-tools: bump version to 0.12.2
Removed two patches which are included in this release and added one
patch to fix build with libxml 2.15.1.

For release notes, see:
https://gitlab.gnome.org/GNOME/gupnp-tools/-/blob/gupnp-tools-0.12.2/NEWS

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-12-09 19:24:58 +01:00

39 lines
1004 B
Makefile

################################################################################
#
# gupnp-tools
#
################################################################################
GUPNP_TOOLS_VERSION_MAJOR = 0.12
GUPNP_TOOLS_VERSION = $(GUPNP_TOOLS_VERSION_MAJOR).2
GUPNP_TOOLS_SOURCE = gupnp-tools-$(GUPNP_TOOLS_VERSION).tar.xz
GUPNP_TOOLS_SITE = \
https://download.gnome.org/sources/gupnp-tools/$(GUPNP_TOOLS_VERSION_MAJOR)
GUPNP_TOOLS_LICENSE = GPL-2.0+
GUPNP_TOOLS_LICENSE_FILES = COPYING
GUPNP_TOOLS_INSTALL_STAGING = YES
GUPNP_TOOLS_DEPENDENCIES = \
host-pkgconf \
libglib2 \
libxml2 \
gssdp \
gupnp \
libsoup3 \
libgtk3 \
$(TARGET_NLS_DEPENDENCIES)
GUPNP_TOOLS_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)
ifeq ($(BR2_PACKAGE_GUPNP_AV),y)
GUPNP_TOOLS_CONF_OPTS += -Dav-tools=true
GUPNP_TOOLS_DEPENDENCIES += gupnp-av
else
GUPNP_TOOLS_CONF_OPTS += -Dav-tools=false
endif
ifeq ($(BR2_PACKAGE_GTKSOURCEVIEW),y)
GUPNP_TOOLS_DEPENDENCIES += gtksourceview
endif
$(eval $(meson-package))