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.inc32
1 files changed, 32 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..d53d0ff21e
--- /dev/null
+++ b/meta/recipes-graphics/eglinfo/eglinfo.inc
@@ -0,0 +1,32 @@
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 = "4a49ff59545d9b6a8222badab64115f89d3a6774"
11
12S = "${WORKDIR}/git"
13
14inherit waf
15
16# BSP layers should add .bbappend files for the -x11 and -fb .bb recipes,
17# which append the respective EGL/OpenGLES/OpenVG libraries to DEPENDS
18# not doing that here, since some platforms might not have OpenGL ES or OpenVG support
19# (in that case, the eglinfo build scripts automatically disable the relevant code paths)
20
21EGLINFO_DEVICE ?= "generic"
22EGLINFO_DEVICE_raspberrypi ?= "raspberrypi"
23EGLINFO_DEVICE_beagleboard ?= "beagleboard"
24EGLINFO_DEVICE_mx6 ?= "imx6"
25
26EXTRA_OECONF = "--platform=${EGLINFO_PLATFORM} \
27 --device=${EGLINFO_DEVICE} \
28 --sysroot ${STAGING_DIR_TARGET}"
29
30do_install_append() {
31 mv ${D}/${bindir}/eglinfo ${D}/${bindir}/${EGLINFO_BINARY_NAME}
32}