summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/eglinfo/eglinfo.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/eglinfo/eglinfo.inc')
-rw-r--r--meta/recipes-graphics/eglinfo/eglinfo.inc27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-graphics/eglinfo/eglinfo.inc b/meta/recipes-graphics/eglinfo/eglinfo.inc
new file mode 100644
index 0000000000..b87688af72
--- /dev/null
+++ b/meta/recipes-graphics/eglinfo/eglinfo.inc
@@ -0,0 +1,27 @@
1SUMMARY = "Utility for printing information EGL and its client APIs (OpenGL, OpenGL ES, OpenVG)"
2SECTION = "graphics"
3LICENSE = "Zlib"
4HOMEPAGE = "https://github.com/dv1/eglinfo"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=8d4f33bc3add976f7dfae85dab66f03c"
6
7DEPENDS = "virtual/egl"
8
9SRC_URI = "git://github.com/dv1/eglinfo.git;branch=master"
10SRCREV = "4b317648ec6cf39556a9e5d8078f605bc0edd5de"
11
12S = "${WORKDIR}/git"
13
14inherit waf
15
16# BSP layers should add .bbappend files for the -x11 and -fb .bb recipes, which
17# append the respective EGL/OpenGLES/OpenVG libraries to DEPENDS and set
18# EGL_DEVICE as appropriate.
19EGLINFO_DEVICE ?= "generic"
20
21EXTRA_OECONF = "--platform=${EGLINFO_PLATFORM} \
22 --device=${EGLINFO_DEVICE} \
23 --sysroot ${STAGING_DIR_TARGET}"
24
25do_install_append() {
26 mv ${D}/${bindir}/eglinfo ${D}/${bindir}/${EGLINFO_BINARY_NAME}
27}