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 = "scm-1"
source = {
url = "git://github.com/antirez/lua-cmsgpack.git",
branch = "master"
}
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"
}
}
}
}
|