Files
rpi-buildroot/package/gstreamer1/gst1-devtools/gst1-devtools.mk
Thomas Bonnefille a4c1f3228d package/gstreamer1/gst1-devtools: bump version to 1.24.11
No functional change, but bump for consistency. For details, see the
release notes:

    https://gstreamer.freedesktop.org/releases/1.24/

Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-04-07 20:13:57 +02:00

41 lines
1.0 KiB
Makefile

################################################################################
#
# gst1-devtools
#
################################################################################
GST1_DEVTOOLS_VERSION = 1.24.11
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
GST1_DEVTOOLS_INSTALL_STAGING = YES
GST1_DEVTOOLS_DEPENDENCIES = \
host-python3 \
python3 \
gstreamer1 \
gst1-plugins-base \
json-glib
ifeq ($(BR2_PACKAGE_GST1_RTSP_SERVER),y)
GST1_DEVTOOLS_DEPENDENCIES += gst1-rtsp-server
endif
GST1_DEVTOOLS_CONF_OPTS = \
-Dvalidate=enabled \
-Ddebug_viewer=disabled \
-Dintrospection=disabled \
-Dtests=disabled \
-Ddoc=disabled
# build GstValidateVideo
ifeq ($(BR2_PACKAGE_CAIRO),y)
GST1_DEVTOOLS_CONF_OPTS += -Dcairo=enabled
GST1_DEVTOOLS_DEPENDENCIES += cairo
else
GST1_DEVTOOLS_CONF_OPTS += -Dcairo=disabled
endif
$(eval $(meson-package))