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
|
package = "lua-cmsgpack"
version = "0.3-0"
source = {
url = "git://github.com/antirez/lua-cmsgpack.git",
branch = "0.3.0"
}
description = {
summary = "MessagePack C implementation and bindings for Lua 5.1",
homepage = "http://github.com/antirez/lua-cmsgpack",
license = "Two-clause BSD",
maintainer = "Salvatore Sanfilippo <antirez@gmail.com>"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
cmsgpack = {
sources = {
"lua_cmsgpack.c",
}
}
}
}
|