-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcgilua-cvs-5.rockspec
45 lines (45 loc) · 1.52 KB
/
cgilua-cvs-5.rockspec
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package = "CGILua"
version = "cvs-5"
source = {
url = "git://github.com/keplerproject/cgilua.git"
}
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.
]],
license = "MIT/X11",
}
dependencies = {
"lua >= 5.1", "luafilesystem >= 1.5.0"
}
build = {
type = "builtin",
modules = {
cgilua = "src/cgilua/cgilua.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"
},
copy_directories = {
"examples"
},
install = {
bin = {
"src/launchers/cgilua.cgi", "src/launchers/cgilua.fcgi"
}
}
}