diff options
Diffstat (limited to 'meta-oe/recipes-benchmark/glmark2')
| -rw-r--r-- | meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb new file mode 100644 index 0000000000..b5d483c088 --- /dev/null +++ b/meta-oe/recipes-benchmark/glmark2/glmark2_2012.12.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | SUMMARY = "OpenGL (ES) 2.0 benchmark" | ||
| 2 | DESCRIPTION = "glmark2 is a benchmark for OpenGL (ES) 2.0. \ | ||
| 3 | It uses only the subset of the OpenGL 2.0 API that is compatible with OpenGL ES 2.0." | ||
| 4 | HOMEPAGE = "https://launchpad.net/glmark2" | ||
| 5 | BUGTRACKER = "https://bugs.launchpad.net/glmark2" | ||
| 6 | |||
| 7 | LICENSE = "GPLv3+ & SGIv1" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
| 9 | file://COPYING.SGI;beginline=5;md5=269cdab4af6748677acce51d9aa13552" | ||
| 10 | |||
| 11 | DEPENDS = "libpng12" | ||
| 12 | |||
| 13 | SRC_URI = "https://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz" | ||
| 14 | |||
| 15 | SRC_URI[md5sum] = "4f306664aa3886fa0cf93853603603f8" | ||
| 16 | SRC_URI[sha256sum] = "bea6f9de2cdce376195bd91e4a2fdfdf80bf3e480abff8e05b90a6458c1deb47" | ||
| 17 | |||
| 18 | inherit pkgconfig | ||
| 19 | |||
| 20 | PACKAGECONFIG ?= "gl gles2" | ||
| 21 | |||
| 22 | PACKAGECONFIG[gl] = "--enable-gl,,virtual/libgl" | ||
| 23 | PACKAGECONFIG[gles2] = "--enable-glesv2,,virtual/libgles2" | ||
| 24 | |||
| 25 | do_configure() { | ||
| 26 | ./waf configure --prefix=${prefix} ${EXTRA_OECONF} | ||
| 27 | } | ||
| 28 | |||
| 29 | do_compile() { | ||
| 30 | ./waf build ${PARALLEL_MAKE} | ||
| 31 | } | ||
| 32 | |||
| 33 | do_install() { | ||
| 34 | ./waf install --destdir=${D} | ||
| 35 | } | ||
