initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
config BR2_PACKAGE_GST1_DEVTOOLS
|
||||
bool "gst1-devtools"
|
||||
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
|
||||
select BR2_PACKAGE_GSTREAMER1_CHECK
|
||||
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
||||
select BR2_PACKAGE_JSON_GLIB
|
||||
select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON
|
||||
select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3
|
||||
# cairo is autodetected but needs PNG support
|
||||
select BR2_PACKAGE_CAIRO_PNG if BR2_PACKAGE_CAIRO
|
||||
help
|
||||
GStreamer development tools (gst-validate).
|
||||
|
||||
https://gstreamer.freedesktop.org
|
||||
|
||||
comment "gst1-devtools depends on python"
|
||||
depends on !BR2_PACKAGE_PYTHON
|
||||
depends on !BR2_PACKAGE_PYTHON3
|
||||
@@ -0,0 +1,3 @@
|
||||
# From https://gstreamer.freedesktop.org/src/gst-devtools/gst-devtools-1.18.5.tar.xz.sha256sum
|
||||
sha256 fecffc86447daf5c2a06843c757a991d745caa2069446a0d746e99b13f7cb079 gst-devtools-1.18.5.tar.xz
|
||||
sha256 6095e9ffa777dd22839f7801aa845b31c9ed07f3d6bf8a26dc5d2dec8ccc0ef3 validate/COPYING
|
||||
@@ -0,0 +1,37 @@
|
||||
################################################################################
|
||||
#
|
||||
# gst1-devtools
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST1_DEVTOOLS_VERSION = 1.18.5
|
||||
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 = \
|
||||
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
|
||||
|
||||
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
|
||||
|
||||
$(eval $(meson-package))
|
||||
Reference in New Issue
Block a user