kumquat-buildroot/package/gstreamer1/gst1-validate/gst1-validate.mk
Peter Seiderer 4f64face1f package/gst1-validate: disable introspection
- disable introspection unconditionally (as already done for all
  other original gstreamer1 packages)
- use '=' instead of '+=' for the first usage of GST1_VALIDATE_CONF_OPTS

Fixes:

  http://autobuild.buildroot.net/results/e6e43fb85c71af9bb599ea8bbe2e805b392cf1ad

    GEN      GstValidate-1.0.gir
  Couldn't find include 'GstPbutils-1.0.gir' (search path: '['/nvmedata/autobuild/instance-6/output-1/host/bin/../aarch64-buildroot-linux-gnu/sysroot/usr/bin/../share/gir-1.0', '/usr/share/gir-1.0', '/usr/share/gir-1.0', '/usr/share/gir-1.0', '/usr/share/gir-1.0', '/usr/share/gir-1.0', '/nvmedata/autobuild/instance-6/output-1/host/share', 'gir-1.0', '/nvmedata/autobuild/instance-6/output-1/host/share/gir-1.0', '/usr/share/gir-1.0']')
  make[5]: *** [Makefile:1612: GstValidate-1.0.gir] Error 1

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2020-03-07 23:41:20 +01:00

30 lines
792 B
Makefile

################################################################################
#
# gst1-validate
#
################################################################################
GST1_VALIDATE_VERSION = 1.16.2
GST1_VALIDATE_SOURCE = gst-validate-$(GST1_VALIDATE_VERSION).tar.xz
GST1_VALIDATE_SITE = https://gstreamer.freedesktop.org/src/gst-validate
GST1_VALIDATE_LICENSE = LGPL-2.1+
GST1_VALIDATE_LICENSE_FILES = COPYING
GST1_VALIDATE_DEPENDENCIES = \
gstreamer1 \
gst1-plugins-base \
json-glib \
$(if $(BR2_PACKAGE_CAIRO),cairo)
ifeq ($(BR2_PACKAGE_PYTHON3),y)
GST1_VALIDATE_DEPENDENCIES += host-python3 python3
else
GST1_VALIDATE_DEPENDENCIES += host-python python
endif
GST1_VALIDATE_CONF_OPTS = \
--disable-introspection \
--disable-sphinx-doc
$(eval $(autotools-package))