mirror of
https://github.com/TangentFoxy/love-release.git
synced 2025-07-28 02:52:20 +00:00
Dependent of brimworks/lua-zip
This commit is contained in:
16
README.md
16
README.md
@@ -100,8 +100,8 @@ could break love-release.
|
|||||||
#### Required
|
#### Required
|
||||||
- [libzip][libzip] and its headers for lua-libzip.
|
- [libzip][libzip] and its headers for lua-libzip.
|
||||||
- Other libraries are automatically installed, but let's give them
|
- Other libraries are automatically installed, but let's give them
|
||||||
some credit: [luafilesystem][lfs], [loadconf][loadconf],
|
some credit: [lua-zip][lua-zip], [luafilesystem][lfs],
|
||||||
[middleclass][middleclass], [semver][semver].
|
[loadconf][loadconf], [middleclass][middleclass], [semver][semver].
|
||||||
|
|
||||||
#### Optional
|
#### Optional
|
||||||
- `love` can be used to determine your system LÖVE version.
|
- `love` can be used to determine your system LÖVE version.
|
||||||
@@ -109,14 +109,6 @@ could break love-release.
|
|||||||
- [LuaJIT][luajit] can be used to compile your sources, either with
|
- [LuaJIT][luajit] can be used to compile your sources, either with
|
||||||
`luarocks-luajit` or with `luajit` if it is installed.
|
`luarocks-luajit` or with `luajit` if it is installed.
|
||||||
|
|
||||||
##### Lua binding to libzip
|
|
||||||
|
|
||||||
love-release depends on a Lua binding to [libzip][libzip]. I have
|
|
||||||
forked [brimworks/lua-zip][brimworks-lua-zip] to
|
|
||||||
[misterda/lua-zip][misterda-lua-zip] in order integrate new features,
|
|
||||||
and published the fork under my namespace in LuaRocks,
|
|
||||||
[rucikir/lua-zip][rucikir-lua-zip-rock].
|
|
||||||
|
|
||||||
### Install
|
### Install
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
@@ -157,9 +149,7 @@ Every bug report or feature request is gladly welcome !
|
|||||||
[lua]: http://www.lua.org/
|
[lua]: http://www.lua.org/
|
||||||
[luajit]: http://luajit.org/
|
[luajit]: http://luajit.org/
|
||||||
[luarocks]: https://luarocks.org/
|
[luarocks]: https://luarocks.org/
|
||||||
[brimworks-lua-zip]: https://github.com/brimworks/lua-zip
|
[lua-zip]: https://github.com/brimworks/lua-zip
|
||||||
[misterda-lua-zip]: https://github.com/misterda/lua-zip
|
|
||||||
[rucikir-lua-zip-rock]: https://luarocks.org/modules/rucikir/lua-zip
|
|
||||||
[loadconf]: https://github.com/Alloyed/loadconf
|
[loadconf]: https://github.com/Alloyed/loadconf
|
||||||
[middleclass]: https://github.com/kikito/middleclass
|
[middleclass]: https://github.com/kikito/middleclass
|
||||||
[package]: https://luarocks.org/modules/rucikir/love-release
|
[package]: https://luarocks.org/modules/rucikir/love-release
|
||||||
|
44
rockspecs/love-release-2.0.11-1.rockspec
Normal file
44
rockspecs/love-release-2.0.11-1.rockspec
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
package = "love-release"
|
||||||
|
version = "2.0.11-1"
|
||||||
|
rockspec_format = "3.0"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/MisterDA/love-release.git",
|
||||||
|
tag = "v2.0.11",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Make LÖVE games releases easier",
|
||||||
|
detailed = [[
|
||||||
|
love-release make LÖVE games releases easier.
|
||||||
|
It automates LÖVE Game Distribution.
|
||||||
|
]],
|
||||||
|
license = "MIT",
|
||||||
|
homepage = "https://github.com/MisterDA/love-release",
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"argparse",
|
||||||
|
"loadconf",
|
||||||
|
"lua",
|
||||||
|
"luafilesystem",
|
||||||
|
"lua-zip",
|
||||||
|
"middleclass",
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["love-release.scripts.debian"] = "src/scripts/debian.lua",
|
||||||
|
["love-release.scripts.love"] = "src/scripts/love.lua",
|
||||||
|
["love-release.scripts.macosx"] = "src/scripts/macosx.lua",
|
||||||
|
["love-release.scripts.windows"] = "src/scripts/windows.lua",
|
||||||
|
["love-release.pipes.args"] = "src/pipes/args.lua",
|
||||||
|
["love-release.pipes.conf"] = "src/pipes/conf.lua",
|
||||||
|
["love-release.pipes.env"] = "src/pipes/env.lua",
|
||||||
|
["love-release.project"] = "src/project.lua",
|
||||||
|
["love-release.script"] = "src/script.lua",
|
||||||
|
["love-release.utils"] = "src/utils.lua",
|
||||||
|
},
|
||||||
|
install = {
|
||||||
|
bin = {
|
||||||
|
["love-release"] = "src/main.lua"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
43
rockspecs/love-release-scm-3.rockspec
Normal file
43
rockspecs/love-release-scm-3.rockspec
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
package = "love-release"
|
||||||
|
version = "scm-3"
|
||||||
|
rockspec_format = "3.0"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/MisterDA/love-release.git",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Make LÖVE games releases easier",
|
||||||
|
detailed = [[
|
||||||
|
love-release make LÖVE games releases easier.
|
||||||
|
It automates LÖVE Game Distribution.
|
||||||
|
]],
|
||||||
|
license = "MIT",
|
||||||
|
homepage = "https://github.com/MisterDA/love-release",
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"argparse",
|
||||||
|
"loadconf",
|
||||||
|
"lua",
|
||||||
|
"luafilesystem",
|
||||||
|
"lua-zip",
|
||||||
|
"middleclass",
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["love-release.scripts.debian"] = "src/scripts/debian.lua",
|
||||||
|
["love-release.scripts.love"] = "src/scripts/love.lua",
|
||||||
|
["love-release.scripts.macosx"] = "src/scripts/macosx.lua",
|
||||||
|
["love-release.scripts.windows"] = "src/scripts/windows.lua",
|
||||||
|
["love-release.pipes.args"] = "src/pipes/args.lua",
|
||||||
|
["love-release.pipes.conf"] = "src/pipes/conf.lua",
|
||||||
|
["love-release.pipes.env"] = "src/pipes/env.lua",
|
||||||
|
["love-release.project"] = "src/project.lua",
|
||||||
|
["love-release.script"] = "src/script.lua",
|
||||||
|
["love-release.utils"] = "src/utils.lua",
|
||||||
|
},
|
||||||
|
install = {
|
||||||
|
bin = {
|
||||||
|
["love-release"] = "src/main.lua"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Reference in New Issue
Block a user