summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-devtools/apitrace/apitrace_9.0.bb28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/apitrace/apitrace_9.0.bb b/meta-oe/recipes-devtools/apitrace/apitrace_9.0.bb
new file mode 100644
index 0000000000..6e61683cde
--- /dev/null
+++ b/meta-oe/recipes-devtools/apitrace/apitrace_9.0.bb
@@ -0,0 +1,28 @@
1SUMMARY = "Tools for tracing OpenGL, Direct3D, and other graphics APIs"
2HOMEPAGE = "http://apitrace.github.io/"
3SECTION = "console/tools"
4LICENSE = "MIT & BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=aeb969185a143c3c25130bc2c3ef9a50 \
6 file://thirdparty/snappy/COPYING;md5=f62f3080324a97b3159a7a7e61812d0c"
7
8SRCREV = "cae55f54c53449fd07f8a917dcd0874db2c15032"
9SRC_URI = "git://github.com/${BPN}/${BPN}.git"
10
11S = "${WORKDIR}/git"
12
13DEPENDS += "zlib libpng python3-native"
14
15inherit cmake
16
17EXTRA_OECMAKE += "\
18 -DENABLE_GUI=OFF \
19 -DENABLE_X11=OFF \
20 -DENABLE_STATIC_LIBGCC=OFF \
21 -DENABLE_STATIC_LIBSTDCXX=OFF \
22 -DPython3_ROOT_DIR=/usr/bin/python3-native \
23"
24
25# Use the bundled snappy library
26EXTRA_OECMAKE += "\
27 -DENABLE_STATIC_SNAPPY=ON \
28"