diff options
Diffstat (limited to 'meta/recipes-graphics/eglinfo/eglinfo.inc')
-rw-r--r-- | meta/recipes-graphics/eglinfo/eglinfo.inc | 32 |
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 @@ | |||
1 | SUMMARY = "Utility for printing information EGL and its client APIs (OpenGL, OpenGL ES, OpenVG)" | ||
2 | SECTION = "graphics" | ||
3 | LICENSE = "Zlib" | ||
4 | HOMEPAGE = "https://github.com/dv1/eglinfo" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8d4f33bc3add976f7dfae85dab66f03c" | ||
6 | |||
7 | DEPENDS = "virtual/egl" | ||
8 | |||
9 | SRC_URI = "git://github.com/dv1/eglinfo.git;branch=master" | ||
10 | SRCREV = "4a49ff59545d9b6a8222badab64115f89d3a6774" | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | inherit 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 | |||
21 | EGLINFO_DEVICE ?= "generic" | ||
22 | EGLINFO_DEVICE_raspberrypi ?= "raspberrypi" | ||
23 | EGLINFO_DEVICE_beagleboard ?= "beagleboard" | ||
24 | EGLINFO_DEVICE_mx6 ?= "imx6" | ||
25 | |||
26 | EXTRA_OECONF = "--platform=${EGLINFO_PLATFORM} \ | ||
27 | --device=${EGLINFO_DEVICE} \ | ||
28 | --sysroot ${STAGING_DIR_TARGET}" | ||
29 | |||
30 | do_install_append() { | ||
31 | mv ${D}/${bindir}/eglinfo ${D}/${bindir}/${EGLINFO_BINARY_NAME} | ||
32 | } | ||