diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2018-05-03 16:17:54 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-11 07:49:37 +0100 |
commit | 6b52c84a3f199ddeba71c2ef53375995771660ca (patch) | |
tree | 2d267d29fb7b7abb48b52d76d5c788f5863898c9 /meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb | |
parent | 19df6ef6f3ec19c7751aab59c3609fb5320cee06 (diff) | |
download | poky-6b52c84a3f199ddeba71c2ef53375995771660ca.tar.gz |
gst-validate: upgrade 1.12.4 -> 1.14.0
* For changes, please see: https://gstreamer.freedesktop.org/releases/1.14/.
* Patch Makefile to fix compilation errors.
(From OE-Core rev: 64a27c7f9792126b1ad82571c351c96da6addb02)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb b/meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb new file mode 100644 index 0000000000..d12b8f6a0f --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Gstreamer validation tool" | ||
2 | DESCRIPTION = "A Tool to test GStreamer components" | ||
3 | HOMEPAGE = "https://gstreamer.freedesktop.org/releases/gst-validate/1.12.3.html" | ||
4 | SECTION = "multimedia" | ||
5 | |||
6 | LICENSE = "LGPLv2.1" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343" | ||
8 | |||
9 | SRC_URI = "https://gstreamer.freedesktop.org/src/${BPN}/${BP}.tar.xz \ | ||
10 | file://0001-validate-fix-template-paths-when-buildir-is-differen.patch \ | ||
11 | " | ||
12 | SRC_URI[md5sum] = "deb8654c912b189388fe585b0fc5bc8f" | ||
13 | SRC_URI[sha256sum] = "33df08bf77f2895d64b7e8a957de3b930b4da0a8edabfbefcff2eab027eeffdf" | ||
14 | |||
15 | DEPENDS = "json-glib glib-2.0 glib-2.0-native gstreamer1.0 gstreamer1.0-plugins-base" | ||
16 | RRECOMMENDS_${PN} = "git" | ||
17 | |||
18 | FILES_${PN} += "${datadir}/gstreamer-1.0/* ${libdir}/gst-validate-launcher/* ${libdir}/gstreamer-1.0/*" | ||
19 | |||
20 | inherit pkgconfig gettext autotools gobject-introspection gtk-doc upstream-version-is-even | ||
21 | |||
22 | # With gtk-doc enabled this recipe fails to build, so forcibly disable it: | ||
23 | # WORKDIR/build/docs/validate/gst-validate-scan: line 117: | ||
24 | # WORKDIR/build/docs/validate/.libs/lt-gst-validate-scan: No such file or directory | ||
25 | GTKDOC_ENABLED = "False" | ||