-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathlua-simdjson-0.0.9-1.rockspec
More file actions
43 lines (43 loc) · 1012 Bytes
/
lua-simdjson-0.0.9-1.rockspec
File metadata and controls
43 lines (43 loc) · 1012 Bytes
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
package="lua-simdjson"
version="0.0.9-1"
source = {
url = "git://github.com/FourierTransformer/lua-simdjson",
tag = "0.0.9"
}
description = {
summary = "This is a simple Lua binding for simdjson",
detailed = [[
This is a c++ binding to simdjson for parsing JSON very quickly.
]],
homepage = "https://github.com/FourierTransformer/lua-simdjson",
license = "Apache-2.0"
}
dependencies = {
"lua >= 5.1, < 5.6"
}
build = {
type = "make",
build_variables = {
CFLAGS="$(CFLAGS)",
LIBFLAG="$(LIBFLAG)",
LUA_BINDIR="$(LUA_BINDIR)",
LUA_INCDIR="$(LUA_INCDIR)",
LUA="$(LUA)",
},
install_variables = {
INST_PREFIX="$(PREFIX)",
INST_BINDIR="$(BINDIR)",
INST_LIBDIR="$(LIBDIR)",
INST_LUADIR="$(LUADIR)",
INST_CONFDIR="$(CONFDIR)",
},
platforms = {
windows = {
build_variables = {
LUA_LIBDIR="$(LUA_LIBDIR)",
LUALIB="$(LUALIB)",
LD="$(LD)",
}
}
}
}