forked from markstinson/lua-MessagePack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrockspec.in
More file actions
28 lines (27 loc) · 829 Bytes
/
rockspec.in
File metadata and controls
28 lines (27 loc) · 829 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
package = 'lua-MessagePack'
version = '@version@-@rev@'
source = {
url = 'http://github.com/fperrad/lua-MessagePack/raw/releases/lua-messagepack-@[email protected]',
md5 = '@md5@',
dir = 'lua-MessagePack-@version@',
}
description = {
summary = "a pure Lua implementation of the MessagePack serialization format",
detailed = [[
MessagePack is an efficient binary serialization format.
It lets you exchange data among multiple languages like JSON but it's faster and smaller.
]],
homepage = 'http://fperrad.github.io/lua-MessagePack/',
maintainer = 'Francois Perrad',
license = 'MIT/X11'
}
dependencies = {
'lua >= 5.1',
}
build = {
type = 'builtin',
modules = {
['MessagePack'] = 'src/MessagePack.lua',
},
copy_directories = { 'docs', 'test' },
}