1################################################################################ 2# 3# gst1-devtools 4# 5################################################################################ 6 7GST1_DEVTOOLS_VERSION = 1.22.0 8GST1_DEVTOOLS_SOURCE = gst-devtools-$(GST1_DEVTOOLS_VERSION).tar.xz 9GST1_DEVTOOLS_SITE = https://gstreamer.freedesktop.org/src/gst-devtools 10GST1_DEVTOOLS_LICENSE = LGPL-2.1+ 11GST1_DEVTOOLS_LICENSE_FILES = validate/COPYING 12GST1_DEVTOOLS_INSTALL_STAGING = YES 13 14GST1_DEVTOOLS_DEPENDENCIES = \ 15 host-python3 \ 16 python3 \ 17 gstreamer1 \ 18 gst1-plugins-base \ 19 json-glib 20 21ifeq ($(BR2_PACKAGE_GST1_RTSP_SERVER),y) 22GST1_DEVTOOLS_DEPENDENCIES += gst1-rtsp-server 23endif 24 25GST1_DEVTOOLS_CONF_OPTS = \ 26 -Dvalidate=enabled \ 27 -Ddebug_viewer=disabled \ 28 -Dintrospection=disabled \ 29 -Dtests=disabled \ 30 -Ddoc=disabled 31 32# build GstValidateVideo 33ifeq ($(BR2_PACKAGE_CAIRO),y) 34GST1_DEVTOOLS_CONF_OPTS += -Dcairo=enabled 35GST1_DEVTOOLS_DEPENDENCIES += cairo 36else 37GST1_DEVTOOLS_CONF_OPTS += -Dcairo=disabled 38endif 39 40$(eval $(meson-package)) 41