summaryrefslogtreecommitdiff
path: root/luarocks-3.1.3-1.rockspec
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2019-06-06 16:46:21 -0300
committerHisham Muhammad <hisham@gobolinux.org>2019-06-06 16:46:21 -0300
commita41588f984bec1010dddffd303c413f1b09c96a9 (patch)
tree599d4d73c21deffdf04e9cb9c8bd70c9b294e92d /luarocks-3.1.3-1.rockspec
parent59e026985872feb54aaea6c8c8800b7181c82dcc (diff)
downloadluarocks-3.1.3.tar.gz
luarocks-3.1.3.tar.bz2
luarocks-3.1.3.zip
Release 3.1.3v3.1.3
Diffstat (limited to 'luarocks-3.1.3-1.rockspec')
-rw-r--r--luarocks-3.1.3-1.rockspec37
1 files changed, 37 insertions, 0 deletions
diff --git a/luarocks-3.1.3-1.rockspec b/luarocks-3.1.3-1.rockspec
new file mode 100644
index 00000000..f40f3272
--- /dev/null
+++ b/luarocks-3.1.3-1.rockspec
@@ -0,0 +1,37 @@
1rockspec_format = "3.0"
2package = "luarocks"
3version = "3.1.3-1"
4source = {
5 url = "git+https://github.com/luarocks/luarocks",
6 tag = "v3.1.3"
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}
27test = {
28 type = "busted",
29 platforms = {
30 windows = {
31 flags = { "--exclude-tags=ssh,git,unix" }
32 },
33 unix = {
34 flags = { "--exclude-tags=ssh,git" }
35 }
36 }
37}