nextfile/nextfile-0.0.2-1.rockspec

31 lines
775 B
Plaintext
Raw Normal View History

2023-11-18 21:19:51 +00:00
package = "nextfile"
2023-11-20 19:02:15 +00:00
version = "0.0.2-1"
2023-11-18 21:19:51 +00:00
source = {
url = "git+https://git.themagician.cc/TheMagician/nextfile.git",
2023-11-20 19:02:15 +00:00
tag = "v0.0.2"
2023-11-18 21:19:51 +00:00
}
description = {
summary = "A library for getting the next file in a sequence.",
detailed = [[
nextfile is a small Lua library for generating the next file in a sequence of files.
It was developed for use with tools that export sections of a video as images, and need to be able to name files sequentially without having generated all of the previous files themselves.
2023-11-20 12:38:17 +00:00
]],
2023-11-18 21:19:51 +00:00
homepage = "https://themagician.cc/TheMagician/nextfile",
license = "The Unlicence"
2023-11-18 21:19:51 +00:00
}
dependencies = {
"lua >=5.1, <= 5.4",
2023-11-20 13:49:52 +00:00
"luafilesystem"
2023-11-18 21:19:51 +00:00
}
build = {
type = "builtin",
modules = {
prevfile = "src/prevfile.lua",
nextfile = "src/nextfile.lua"
}
}