From 415a0f1d57f75ecc6b5f50b20421868cd39fa2fe Mon Sep 17 00:00:00 2001 From: The Magician Date: Sat, 18 Nov 2023 21:19:51 +0000 Subject: [PATCH] Add .rockspec file --- nextfile-0.0.1.rockspec | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 nextfile-0.0.1.rockspec diff --git a/nextfile-0.0.1.rockspec b/nextfile-0.0.1.rockspec new file mode 100644 index 0000000..66d4eaf --- /dev/null +++ b/nextfile-0.0.1.rockspec @@ -0,0 +1,30 @@ +package = "nextfile" +version = "0.0.1" + +source = { + url = "https://git.themagician.cc/TheMagician/nextfile", + tag = "v0.0.1" +} + +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. + ]] + homepage = "https://themagician.cc/TheMagician/nextfile", + licence = "The Unlicence" +} + +dependencies = { + "lua >=5.1, <= 5.4", + "luafilesystem >= scm-1" +} + +build = { + type = "builtin", + modules = { + prevfile = "src/prevfile.lua", + nextfile = "src/nextfile.lua" + } +}