diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2009-12-02 16:11:44 +0100 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2009-12-02 23:10:53 +0100 |
commit | 29ac39b571e84efbda643c9b81f385657e559732 (patch) | |
tree | 11dd5ecd07ed267a3885d6ee2046ed545cf71a8e /recipes/glew/libglew_1.5.1.bb | |
parent | eeb011aa1f93f8699041de4b8ed365883979ffb7 (diff) |
glew: introduce highlevel gl library
Diffstat (limited to 'recipes/glew/libglew_1.5.1.bb')
-rw-r--r-- | recipes/glew/libglew_1.5.1.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes/glew/libglew_1.5.1.bb b/recipes/glew/libglew_1.5.1.bb new file mode 100644 index 0000000000..ed0b69c28b --- /dev/null +++ b/recipes/glew/libglew_1.5.1.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-source C/C++ extension loading library." +SECTION = "libs" +LICENSE = "Modified BSD License, Mesa 3-D License, Khronos License" + +DEPENDS = "virtual/libx11 mesa libxext libxi libxmu" + +PR = "r0" + + +SRC_URI = "${SOURCEFORGE_MIRROR}/project/glew/glew/1.5.1/glew-1.5.1-src.tgz \ + file://autotools.patch;patch=1 \ + " + +inherit autotools lib_package + +S = "${WORKDIR}/glew" + |