Commit d3cc9809 authored by Peter Seiderer's avatar Peter Seiderer Committed by Thomas Petazzoni
Browse files
parent 47deb7ba
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7,5 +7,6 @@ source "package/gstreamer1/gst1-plugins-good/Config.in"
source "package/gstreamer1/gst1-plugins-bad/Config.in"
source "package/gstreamer1/gst1-plugins-ugly/Config.in"
source "package/gstreamer1/gst1-libav/Config.in"
source "package/gstreamer1/gst1-validate/Config.in"
source "package/gstreamer1/gst-omx/Config.in"
endif
+9 −0
Original line number Diff line number Diff line
menuconfig BR2_PACKAGE_GST1_VALIDATE
	bool "gst1-validate"
	select BR2_PACKAGE_GST1_PLUGINS_BASE
	help
	  GstValidate is a tool that allows GStreamer developers to
	  check that the GstElements they write behave the way they
	  are supposed to.

	  http://gstreamer.freedesktop.org/
+2 −0
Original line number Diff line number Diff line
# Hash from http://gstreamer.freedesktop.org/src/gst-validate/gst-validate-1.4.0.tar.xz.sha256sum
sha256 ac30d1041a8cfe5d268439f5cedee7e9753ba49080fc67bff1266581198438d0 gst-validate-1.4.0.tar.xz
+17 −0
Original line number Diff line number Diff line
################################################################################
#
# gst1-validate
#
################################################################################

GST1_VALIDATE_VERSION = 1.4.0
GST1_VALIDATE_SOURCE = gst-validate-$(GST1_VALIDATE_VERSION).tar.xz
GST1_VALIDATE_SITE = http://gstreamer.freedesktop.org/src/gst-validate
GST1_VALIDATE_LICENSE = LGPLv2.1+
GST1_VALIDATE_LICENSE_FILES = COPYING

GST1_VALIDATE_CONF_OPTS = --disable-sphinx-doc

GST1_VALIDATE_DEPENDENCIES = gstreamer1 gst1-plugins-base

$(eval $(autotools-package))