blob: b87688af7235cd5c8716400c968cc355c9c4afc0 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "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}