forked from calio/lua-capnproto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlua-capnproto.rockspec
More file actions
33 lines (33 loc) · 884 Bytes
/
lua-capnproto.rockspec
File metadata and controls
33 lines (33 loc) · 884 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
package = "lua-capnproto"
version = "0.1.2-1"
source = {
url = "git://github.com/cloudflare/lua-capnproto",
tag = "v0.1.2-1",
}
description = {
summary = "Lua-capnproto is a pure lua implementation of capnproto based on LuaJIT.",
detailed = [[
Lua-capnproto is a pure lua implementation of capnproto based on LuaJIT.
]],
homepage = "https://github.com/cloudflare/lua-capnproto",
license = "BSD",
}
dependencies = {
"lua ~> 5.1", -- in fact, this should be "luajit >= 2.1.0"
}
build = {
-- We'll start here.
type = "builtin",
modules = {
capnp = "capnp.lua",
['capnp.compile'] = "capnp/compile.lua",
['capnp.util'] = "capnp/util.lua",
},
install = {
bin = {
['capnpc-lua'] = "bin/capnpc-lua",
['capnpc-echo'] = "bin/capnpc-echo",
['schema.capnp'] = "bin/schema.capnp",
}
}
}