File: luadoc-3.0.1-1.rockspec

package info (click to toggle)
lua-doc 3.0.1%2Bgitdb9e868-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 408 kB
  • ctags: 122
  • sloc: makefile: 51
file content (32 lines) | stat: -rw-r--r-- 946 bytes parent folder | download | duplicates (3)
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
package = "LuaDoc"
version = "3.0.1-1"
source = {
   url = "http://luaforge.net/frs/download.php/2557/luadoc-3.0.1.tar.gz"
}
description = {
   summary = "LuaDoc is a documentation tool for Lua source code",
   detailed = [[
      	LuaDoc is a documentation generator tool for Lua source code. 
	It parses the declarations and documentation comments in a set of 
	Lua source files and produces a set of XHTML pages describing the 
	commented declarations and functions.

	The output is not limited to XHTML. Other formats can be generated 
	by implementing new doclets. The format of the documentation comments 
	is also flexible and can be customized by implementing new taglets. 
   ]],
   license = "MIT/X11",
   homepage = "http://luadoc.luaforge.net/"
}
dependencies = {
   "lualogging >= 1.1.3",
   "luafilesystem >= 1.2.1",
}
build = {
   type = "make",
   variables = {
      LUA_DIR = "$(LUADIR)",
      SYS_BINDIR = "$(BINDIR)"
   }
}