From fae4a9b6b6659df3f4df33881729b29a24d12fa2 Mon Sep 17 00:00:00 2001 From: Thomas Kreitler Date: Thu, 17 Nov 2016 16:23:49 +0100 Subject: [PATCH] glfw: Add version 3.2.1 [GLFW](http://www.glfw.org/index.html) is a free, Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development. It provides a simple, platform-independent API for creating windows, contexts and surfaces, reading input, handling events, etc. IMHO this is the first serious alternative to GLUT. --- glfw.be0 | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100755 glfw.be0 diff --git a/glfw.be0 b/glfw.be0 new file mode 100755 index 000000000..79bd08a9d --- /dev/null +++ b/glfw.be0 @@ -0,0 +1,44 @@ +#!/usr/bin/env beesh + +# BEE_VERSION glwf-3.2.1-0 + +## The source URL(s) array +SRCURL[0]="https://github.com/glfw/glfw/releases/download/${PKGVERSION}/glfw-${PKGVERSION}.zip" + +## Add URLs/pathes to patch files +# PATCHURL+=() + +## files that should not be added from the image directory. +# EXCLUDE+=() + + +## uncomment to change default +# build_in_sourcedir + +## specify different source directory +# sourcesubdir_append src + + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure() { + bee_configure \ + -DBUILD_SHARED_LIBS=on +} + +#mee_build() { +# bee_build +#} + +## mee_install() should install into "${D}" +## default: 'make install DESTDIR="${D}"' + +#mee_install() { +# bee_install +#}