-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
llhttp.rockspec
41 lines (41 loc) · 992 Bytes
/
llhttp.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
rockspec_format = "3.0"
package = "llhttp"
version = "0.0.6-1"
source = {
url = "git+https://github.com/MunifTanjim/llhttp.lua.git",
tag = "0.0.6",
}
description = {
summary = "Lua interface for llhttp.",
detailed = [[
Lua interface for llhttp.
]],
license = "MIT",
homepage = "https://github.com/MunifTanjim/llhttp.lua",
issues_url = "https://github.com/MunifTanjim/llhttp.lua/issues",
maintainer = "Munif Tanjim (https://muniftanjim.dev)",
labels = { "http", "llhttp" },
}
build = {
type = "builtin",
modules = {
["llhttp"] = "llhttp/init.lua",
["llhttp.core"] = {
sources = {
"llhttp/core/api.c",
"llhttp/core/http.c",
"llhttp/core/llhttp.c",
"llhttp/core/main.c",
},
defines = {
"LLHTTP_STRICT_MODE",
},
incdirs = {
"llhttp",
},
},
["llhttp.enum"] = "llhttp/enum.lua",
["llhttp.ffi"] = "llhttp/ffi.lua",
["llhttp.parser"] = "llhttp/parser.lua",
},
}