cc88590b49
Disable introspection as it raises a build failure with autotools. It could be enabled after bumping to upcoming 1.18.x and switching to messon. We can't switch now as version 1.16.2 don't allow to disable examples/tools through meson Fixes: - http://autobuild.buildroot.org/results/36eb875fba2847b32df05f31d8f8ca9f0ecde36f Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
42 lines
1.4 KiB
Makefile
42 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# gstreamer1-editing-services
|
|
#
|
|
################################################################################
|
|
|
|
GSTREAMER1_EDITING_SERVICES_VERSION = 1.16.2
|
|
GSTREAMER1_EDITING_SERVICES_SOURCE = gstreamer-editing-services-$(GSTREAMER1_EDITING_SERVICES_VERSION).tar.xz
|
|
GSTREAMER1_EDITING_SERVICES_SITE = http://gstreamer.freedesktop.org/src/gstreamer-editing-services
|
|
GSTREAMER1_EDITING_SERVICES_LICENSE = LGPL-2.0+
|
|
GSTREAMER1_EDITING_SERVICES_LICENSE_FILES = COPYING COPYING.LIB
|
|
GSTREAMER1_EDITING_SERVICES_INSTALL_STAGING = YES
|
|
GSTREAMER1_EDITING_SERVICES_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
gstreamer1 \
|
|
gst1-plugins-base \
|
|
gst1-plugins-good \
|
|
$(if $(BR2_PACKAGE_GST1_VALIDATE),gst1-validate) \
|
|
libxml2
|
|
|
|
GSTREAMER1_EDITING_SERVICES_CONF_OPTS = \
|
|
--disable-benchmarks \
|
|
--disable-introspection
|
|
|
|
# examples need GTK2/3 with X11 backend
|
|
ifneq ($(BR2_PACKAGE_LIBGTK2)$(BR2_PACKAGE_LIBGTK3_X11),)
|
|
GSTREAMER1_EDITING_SERVICES_CONF_OPTS += --enable-examples
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
|
|
GSTREAMER1_EDITING_SERVICES_CONF_OPTS += --with-gtk=2.0
|
|
GSTREAMER1_EDITING_SERVICES_DEPENDENCIES += libgtk2
|
|
else
|
|
GSTREAMER1_EDITING_SERVICES_CONF_OPTS += --with-gtk=3.0
|
|
GSTREAMER1_EDITING_SERVICES_DEPENDENCIES += libgtk3
|
|
endif
|
|
|
|
else
|
|
GSTREAMER1_EDITING_SERVICES_CONF_OPTS += --disable-examples
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|