Skip to content

Commit

Permalink
Bug-fix version: 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasguisasola committed May 17, 2019
1 parent eef3247 commit 5c4d84a
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions rockspec/cgilua-6.0.1-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
package = "CGILua"
version = "6.0.1-0"

source = {
url = "https://github.com/keplerproject/cgilua",
dir = "cgilua-6.0.1-0",
}

description = {
summary = "Tool for creating dynamic Web pages and manipulating data from Web forms",
detailed = [[
CGILua allows the separation of logic and data handling from the
generation of pages, making it easy to develop web applications with
Lua. CGILua can be used with a variety of Web servers and, for each
server, with different launchers. A launcher is responsible for the
interaction of CGILua and the Web server, for example using ISAPI on
IIS or mod_lua on Apache.
]],
homepage = "http://keplerproject.github.com/cgilua",
license = "MIT/X11",
}

dependencies = {
"lua >= 5.2",
"luafilesystem >= 1.6.0",
}

build = {
type = "builtin",
modules = {
["cgilua.main"] = "src/cgilua/main.lua",
["cgilua.authentication"] = "src/cgilua/authentication.lua",
["cgilua.cookies"] = "src/cgilua/cookies.lua",
["cgilua.dispatcher"] = "src/cgilua/dispatcher.lua",
["cgilua.loader"] = "src/cgilua/loader.lua",
["cgilua.lp"] = "src/cgilua/lp.lua",
["cgilua.mime"] = "src/cgilua/mime.lua",
["cgilua.post"] = "src/cgilua/post.lua",
["cgilua.readuntil"] = "src/cgilua/readuntil.lua",
["cgilua.serialize"] = "src/cgilua/serialize.lua",
["cgilua.session"] = "src/cgilua/session.lua",
["cgilua.urlcode"] = "src/cgilua/urlcode.lua"
},
install = {
bin = {
"src/launchers/cgilua.cgi",
"src/launchers/cgilua.fcgi",
},
},
copy_directories = {
"examples",
"doc",
"tests"
},
}

0 comments on commit 5c4d84a

Please sign in to comment.