summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/shaderc/shaderc_2020.5.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-15 07:06:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-18 12:43:00 +0100
commit169f863cf380396a5aca2dedafce00d9938e9370 (patch)
tree1f2da480422411f4cb19bdfba3837524d0bca59e /meta/recipes-graphics/shaderc/shaderc_2020.5.bb
parent709ff9bd1ce5fcdeef0c9220bc178d04fdef68fe (diff)
downloadpoky-169f863cf380396a5aca2dedafce00d9938e9370.tar.gz
shaderc: upgrade 2020.5 -> 2021.0
(From OE-Core rev: 9ff9536efdc4e5cc7c9934ab739bb7a75b55fb29) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/shaderc/shaderc_2020.5.bb')
-rw-r--r--meta/recipes-graphics/shaderc/shaderc_2020.5.bb28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-graphics/shaderc/shaderc_2020.5.bb b/meta/recipes-graphics/shaderc/shaderc_2020.5.bb
deleted file mode 100644
index ce51aab034..0000000000
--- a/meta/recipes-graphics/shaderc/shaderc_2020.5.bb
+++ /dev/null
@@ -1,28 +0,0 @@
1SUMMARY = "A collection of tools, libraries and tests for shader compilation"
2DESCRIPTION = "The Shaderc library provides an API for compiling GLSL/HLSL \
3source code to SPIRV modules. It has been shipping in the Android NDK since version r12b."
4SECTION = "graphics"
5HOMEPAGE = "https://github.com/google/shaderc"
6LICENSE = "Apache-2.0"
7LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
8
9SRCREV = "f3e39a7eed682faececb73f0b85717f2f44ee9ba"
10SRC_URI = "git://github.com/google/shaderc.git;protocol=https;branch=main \
11 file://0001-cmake-disable-building-external-dependencies.patch \
12 file://0002-libshaderc_util-fix-glslang-header-file-location.patch \
13 "
14UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>\d+(\.\d+)+)$"
15S = "${WORKDIR}/git"
16
17inherit cmake python3native
18
19DEPENDS = "spirv-headers spirv-tools glslang"
20
21EXTRA_OECMAKE = " \
22 -DCMAKE_BUILD_TYPE=Release \
23 -DBUILD_EXTERNAL=OFF \
24 -DSHADERC_SKIP_TESTS=ON \
25 -DSHADERC_SKIP_EXAMPLES=ON \
26"
27
28BBCLASSEXTEND = "native nativesdk"