summaryrefslogtreecommitdiff
path: root/extras/luacov/luacov-0.2-1.rockspec
blob: 37eff94bc7b00a749fbeb6dfbcd5454937dc8ada (plain)
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
package = "LuaCov"
version = "0.2-1"
source = {
   url = "http://luaforge.net/frs/download.php/4053/luacov-0.2.tar.gz"
}
description = {
   summary = "Coverage analysis tool for Lua scripts",
   detailed = [[
      LuaCov is a simple coverage analysis tool for Lua scripts.
      When a Lua script is run with the luacov module, it
      generates a stats file. The luacov command-line script then
      processes this file generating a report indicating which code
      paths were not traversed, which is useful for verifying the
      effectiveness of a test suite.
   ]],
   license = "MIT/X11",
   homepage = "http://luacov.luaforge.net/"
}
dependencies = {
   "lua >= 5.0",
}
build = {
   type = "make",
   variables = {
      LUADIR = "$(LUADIR)",
      BINDIR = "$(BINDIR)"
   }
}