303b8505dd
Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
28 lines
763 B
Makefile
28 lines
763 B
Makefile
################################################################################
|
|
#
|
|
# gst1-validate
|
|
#
|
|
################################################################################
|
|
|
|
GST1_VALIDATE_VERSION = 1.16.1
|
|
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-sphinx-doc
|
|
|
|
$(eval $(autotools-package))
|