68c8c37d7d
- GStreamer 0.10 back-end has been dropped with
af50a8ac98
- Switch to meson-package (to avoid autoreconf as no configure is
shipped anymore)
- Update indention in hash file (two spaces)
https://gitlab.gnome.org/GNOME/gupnp-dlna/-/blob/gupnp-dlna-0.12.0/NEWS
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# gupnp-dlna
|
|
#
|
|
################################################################################
|
|
|
|
GUPNP_DLNA_VERSION_MAJOR = 0.12
|
|
GUPNP_DLNA_VERSION = $(GUPNP_DLNA_VERSION_MAJOR).0
|
|
GUPNP_DLNA_SOURCE = gupnp-dlna-$(GUPNP_DLNA_VERSION).tar.xz
|
|
GUPNP_DLNA_SITE = \
|
|
http://ftp.gnome.org/pub/gnome/sources/gupnp-dlna/$(GUPNP_DLNA_VERSION_MAJOR)
|
|
# COPYING contains LGPL-2.1 but all source files contain LPGL-2.0+
|
|
GUPNP_DLNA_LICENSE = LGPL-2.0+
|
|
GUPNP_DLNA_LICENSE_FILES = COPYING
|
|
GUPNP_DLNA_INSTALL_STAGING = YES
|
|
GUPNP_DLNA_DEPENDENCIES = host-pkgconf libglib2 libxml2
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
GUPNP_DLNA_CONF_OPTS += -Dintrospection=true -Dvapi=true
|
|
GUPNP_DLNA_DEPENDENCIES += host-vala gobject-introspection
|
|
else
|
|
GUPNP_DLNA_CONF_OPTS += -Dintrospection=false -Dvapi=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BASE),y)
|
|
GUPNP_DLNA_CONF_OPTS += -Dgstreamer_backend=enabled
|
|
GUPNP_DLNA_DEPENDENCIES += gstreamer1 gst1-plugins-base
|
|
else
|
|
GUPNP_DLNA_CONF_OPTS += -Dgstreamer_backend=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|