Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
thomas authored and pmenzel committed Nov 17, 2016
1 parent 99ec6b1 commit fae4a9b
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions 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
#}

0 comments on commit fae4a9b

Please sign in to comment.