ntopng/third-party/lua-resty-template-master/lua-resty-template-dev-1.rockspec
2016-11-07 12:05:45 +01:00

23 lines
773 B
Lua

package = "lua-resty-template"
version = "dev-1"
source = {
url = "git://github.com/bungle/lua-resty-template.git"
}
description = {
summary = "Templating Engine (HTML) for Lua and OpenResty",
detailed = "lua-resty-template is a compiling (HTML) templating engine for Lua and OpenResty.",
homepage = "https://github.com/bungle/lua-resty-template",
maintainer = "Aapo Talvensaari <aapo.talvensaari@gmail.com>",
license = "BSD"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
["resty.template"] = "lib/resty/template.lua",
["resty.template.html"] = "lib/resty/template/html.lua",
["resty.template.microbenchmark"] = "lib/resty/template/microbenchmark.lua"
}
}