diff options
| author | Hisham Muhammad <hisham@gobolinux.org> | 2025-06-17 19:13:20 -0300 |
|---|---|---|
| committer | Hisham Muhammad <hisham@gobolinux.org> | 2025-06-17 19:13:20 -0300 |
| commit | 705bb7408656ae9a60709894920284f83d948ec3 (patch) | |
| tree | 3d227e7d57921f317fcdeda992857e05423a5d38 /luarocks-3.12.1-1.rockspec | |
| parent | 2cdf35e769dd904759d50a6589474d6a52605916 (diff) | |
| download | luarocks-3.12.1.tar.gz luarocks-3.12.1.tar.bz2 luarocks-3.12.1.zip | |
Release 3.12.1v3.12.1
Diffstat (limited to 'luarocks-3.12.1-1.rockspec')
| -rw-r--r-- | luarocks-3.12.1-1.rockspec | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/luarocks-3.12.1-1.rockspec b/luarocks-3.12.1-1.rockspec new file mode 100644 index 00000000..0994928c --- /dev/null +++ b/luarocks-3.12.1-1.rockspec | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | rockspec_format = "3.0" | ||
| 2 | package = "luarocks" | ||
| 3 | version = "3.12.1-1" | ||
| 4 | source = { | ||
| 5 | url = "git+https://github.com/luarocks/luarocks", | ||
| 6 | tag = "v3.12.1" | ||
| 7 | } | ||
| 8 | description = { | ||
| 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 | } | ||
| 24 | test_dependencies = { | ||
| 25 | "luacov", | ||
| 26 | "busted-htest", | ||
| 27 | } | ||
| 28 | test = { | ||
| 29 | type = "busted", | ||
| 30 | platforms = { | ||
| 31 | windows = { | ||
| 32 | flags = { "--exclude-tags=ssh,git,unix", "-Xhelper", "lua_dir=$(LUA_DIR)", "-Xhelper", "lua=$(LUA)" } | ||
| 33 | }, | ||
| 34 | unix = { | ||
| 35 | flags = { "--exclude-tags=ssh,git", "-Xhelper", "lua_dir=$(LUA_DIR)", "-Xhelper", "lua=$(LUA)" } | ||
| 36 | } | ||
| 37 | } | ||
| 38 | } | ||
