-
Notifications
You must be signed in to change notification settings - Fork 0
Permalink
bee-files/glfw.be0
Newer
100755
44 lines (30 sloc)
735 Bytes
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION glwf-3.2.1-0
4
5
## The source URL(s) array
6
SRCURL[0]="https://github.com/glfw/glfw/releases/download/${PKGVERSION}/glfw-${PKGVERSION}.zip"
7
8
## Add URLs/pathes to patch files
9
# PATCHURL+=()
10
11
## files that should not be added from the image directory.
12
# EXCLUDE+=()
13
14
15
## uncomment to change default
16
# build_in_sourcedir
17
18
## specify different source directory
19
# sourcesubdir_append src
20
21
22
#mee_extract() {
23
# bee_extract "${@}"
24
#}
25
26
#mee_patch() {
27
# bee_patch "${@}"
28
#}
29
30
mee_configure() {
31
bee_configure \
32
-DBUILD_SHARED_LIBS=on
33
}
34
35
#mee_build() {
36
# bee_build
37
#}
38
39
## mee_install() should install into "${D}"
40
## default: 'make install DESTDIR="${D}"'
41
42
#mee_install() {
43
# bee_install
44
#}