pcsx-redux/third_party/lua-protobuf/rockspecs/lua-protobuf-scm-1.rockspec
Nicolas Pixel Noble f506f642f5 Adding lua-protobuf
2022-12-18 23:05:47 -08:00

27 lines
498 B
Lua

package = "lua-protobuf"
version = "scm-1"
source = {
url = "git+https://github.com/starwing/lua-protobuf.git",
}
description = {
summary = "protobuf data support for Lua",
detailed = [[
This project offers a simple C library for basic protobuf wire format encode/decode.
]],
homepage = "https://github.com/starwing/lua-protobuf",
license = "MIT",
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
pb = "pb.c";
protoc = "protoc.lua";
}
}