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