-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlpugl-scm-0.rockspec
72 lines (72 loc) · 1.75 KB
/
lpugl-scm-0.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package = "lpugl"
version = "scm-0"
source = {
url = "https://github.com/osch/lua-lpugl/archive/master.zip",
dir = "lua-lpugl-master",
}
description = {
summary = "Minimal API for building GUIs",
homepage = "https://github.com/osch/lua-lpugl",
license = "MIT/X11",
detailed = [[
LPugl is a minimal portable Lua-API for building GUIs.
Currently there are two drawing backends available,
see packages "lpugl_cairo" and "lpugl_opengl".
Supported platforms: X11, Windows and Mac OS X.
LPugl is based on Pugl, a minimal portable API for embeddable GUIs,
see: https://drobilla.net/software/pugl
]],
}
dependencies = {
"lua >= 5.1, <= 5.4",
"luarocks-build-extended"
}
build = {
type = "extended",
platforms = {
linux = {
modules = {
lpugl = {
libraries = { "pthread", "X11" },
}
}
},
windows = {
modules = {
lpugl = {
libraries = { "kernel32", "gdi32", "user32" },
}
}
},
macosx = {
modules = {
lpugl = {
sources = { "src/pugl.m" },
libraries = { "pthread" },
variables = {
LIBFLAG_EXTRAS = { "-framework", "Cocoa" }
}
}
}
},
},
modules = {
lpugl = {
sources = { "src/pugl.c",
"src/async_util.c",
"src/compat-5.3.c",
"src/error.c",
"src/lpugl.c",
"src/lpugl_compat.c",
"src/util.c",
"src/view.c",
"src/world.c" },
defines = {
"LPUGL_VERSION="..version:gsub("^(.*)-.-$", "%1"),
"LPUGL_BUILD_DATE=$(BUILD_DATE)"
},
incdirs = { "pugl-repo" },
libdirs = { },
},
}
}