2020-09-16 21:49:28 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# gst1-devtools
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2022-02-04 16:46:25 +01:00
|
|
|
GST1_DEVTOOLS_VERSION = 1.18.6
|
2020-09-16 21:49:28 +02:00
|
|
|
GST1_DEVTOOLS_SOURCE = gst-devtools-$(GST1_DEVTOOLS_VERSION).tar.xz
|
|
|
|
GST1_DEVTOOLS_SITE = https://gstreamer.freedesktop.org/src/gst-devtools
|
|
|
|
GST1_DEVTOOLS_LICENSE = LGPL-2.1+
|
|
|
|
GST1_DEVTOOLS_LICENSE_FILES = validate/COPYING
|
2020-10-17 12:17:03 +02:00
|
|
|
GST1_DEVTOOLS_INSTALL_STAGING = YES
|
2020-09-16 21:49:28 +02:00
|
|
|
|
|
|
|
GST1_DEVTOOLS_DEPENDENCIES = \
|
|
|
|
gstreamer1 \
|
|
|
|
gst1-plugins-base \
|
|
|
|
json-glib \
|
|
|
|
$(if $(BR2_PACKAGE_CAIRO),cairo)
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3),y)
|
|
|
|
GST1_DEVTOOLS_DEPENDENCIES += host-python3 python3
|
|
|
|
else
|
|
|
|
GST1_DEVTOOLS_DEPENDENCIES += host-python python
|
|
|
|
endif
|
|
|
|
|
2020-10-19 21:27:57 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_GST1_RTSP_SERVER),y)
|
|
|
|
GST1_DEVTOOLS_DEPENDENCIES += gst1-rtsp-server
|
|
|
|
endif
|
|
|
|
|
2020-09-16 21:49:28 +02:00
|
|
|
GST1_DEVTOOLS_CONF_OPTS = \
|
|
|
|
-Dvalidate=enabled \
|
|
|
|
-Ddebug_viewer=disabled \
|
|
|
|
-Dintrospection=disabled \
|
|
|
|
-Dtests=disabled \
|
|
|
|
-Ddoc=disabled
|
|
|
|
|
|
|
|
$(eval $(meson-package))
|