summaryrefslogtreecommitdiff
path: root/luarocks-3.4.0-1.rockspec
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2020-09-25 15:55:42 -0300
committerHisham Muhammad <hisham@gobolinux.org>2020-09-25 15:55:42 -0300
commitcef7218b1e25ad2bb5982c89ec01e349d6b2f3a0 (patch)
tree9673e0fe6859d7259c90a941709096081c683f54 /luarocks-3.4.0-1.rockspec
parent8499d5afd71e86bf3487f3c28ba509cc8b1cc823 (diff)
downloadluarocks-3.4.0.tar.gz
luarocks-3.4.0.tar.bz2
luarocks-3.4.0.zip
Release 3.4.0v3.4.0
Diffstat (limited to 'luarocks-3.4.0-1.rockspec')
-rw-r--r--luarocks-3.4.0-1.rockspec38
1 files changed, 38 insertions, 0 deletions
diff --git a/luarocks-3.4.0-1.rockspec b/luarocks-3.4.0-1.rockspec
new file mode 100644
index 00000000..8317afe9
--- /dev/null
+++ b/luarocks-3.4.0-1.rockspec
@@ -0,0 +1,38 @@
1rockspec_format = "3.0"
2package = "luarocks"
3version = "3.4.0-1"
4source = {
5 url = "git+https://github.com/luarocks/luarocks",
6 tag = "v3.4.0"
7}
8description = {
9 summary = "A package manager for Lua modules.",
10 detailed = [[
11 LuaRocks allows you to install Lua modules as self-contained
12 packages called "rocks", which also contain version dependency
13 information. This information is used both during installation,
14 so that when one rock is requested all rocks it depends on are
15 installed as well, and at run time, so that when a module is
16 required, the correct version is loaded. LuaRocks supports both
17 local and remote repositories, and multiple local rocks trees.
18 ]],
19 homepage = "http://www.luarocks.org",
20 issues_url = "https://github.com/luarocks/luarocks/issues",
21 maintainer = "Hisham Muhammad",
22 license = "MIT",
23}
24test_dependencies = {
25 "luacov",
26 "busted-htest",
27}
28test = {
29 type = "busted",
30 platforms = {
31 windows = {
32 flags = { "--exclude-tags=ssh,git,unix" }
33 },
34 unix = {
35 flags = { "--exclude-tags=ssh,git" }
36 }
37 }
38}