blob: d0c0c276192ce31312232f8bf4abb4fcb9756662 [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
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05009SRC_URI = "git://github.com/dv1/eglinfo.git;branch=master \
10 file://0001-Add-STAGING_INCDIR-to-searchpath-for-egl-headers.patch \
11 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012SRCREV = "4b317648ec6cf39556a9e5d8078f605bc0edd5de"
13
14S = "${WORKDIR}/git"
15
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050016inherit waf distro_features_check
17# depends on virtual/egl
18REQUIRED_DISTRO_FEATURES ?= "opengl"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
20# BSP layers should add .bbappend files for the -x11 and -fb .bb recipes, which
21# append the respective EGL/OpenGLES/OpenVG libraries to DEPENDS and set
22# EGL_DEVICE as appropriate.
23EGLINFO_DEVICE ?= "generic"
24
25EXTRA_OECONF = "--platform=${EGLINFO_PLATFORM} \
26 --device=${EGLINFO_DEVICE} \
27 --sysroot ${STAGING_DIR_TARGET}"
28
29do_install_append() {
30 mv ${D}/${bindir}/eglinfo ${D}/${bindir}/${EGLINFO_BINARY_NAME}
31}