File: cgilua-cvs-3.rockspec

package info (click to toggle)
lua-cgi 6.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 956 kB
  • sloc: javascript: 2,216; makefile: 25
file content (35 lines) | stat: -rwxr-xr-x 898 bytes parent folder | download | duplicates (8)
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
package = "CGILua"

version = "cvs-3"

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. 
   ]]
}

dependencies = {
   "lua >= 5.1",
   "luafilesystem cvs",
}

source = {
   url = "cvs://:pserver:anonymous@cvs.luaforge.net:/cvsroot/cgilua",
   cvs_tag = "HEAD",
   dir = "cgilua"
}

build = {
   type = "make",
   build_pass = false,
   install_target = "install",
   install_variables = {
      LUA_DIR = "$(LUADIR)"
   }
}