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
|
package = "WSAPI-Xavante"
version = "1.4-1"
description = {
summary = "Lua Web Server API - Xavante Handler",
detailed = [[
WSAPI is an API that abstracts the web server from Lua web applications. This is the rock
that contains the Xavante adapter and launcher.
]],
license = "MIT/X11",
homepage = "http://www.keplerproject.org/wsapi"
}
dependencies = { "wsapi >= 1.4", "rings >= 1.2.3", "coxpcall >= 1.13", "xavante >= 2.2.0" }
source = {
url = "http://cloud.github.com/downloads/keplerproject/wsapi/wsapi-1.4.tar.gz"
}
build = {
type = "builtin",
modules = {
["wsapi.xavante"] = "src/wsapi/xavante.lua"
},
install = { bin = { "src/launcher/wsapi" } }
}
|