From c7bcdbf41162d43f8c18d210a12c42ead11f14a8 Mon Sep 17 00:00:00 2001 From: Nathan DECHER Date: Sun, 13 Sep 2020 16:25:02 +0200 Subject: [PATCH] Producing rockspec 1.0.0-4 --- rockspecs/moonbuild-1.0.0-4.rockspec | 29 ++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 rockspecs/moonbuild-1.0.0-4.rockspec diff --git a/rockspecs/moonbuild-1.0.0-4.rockspec b/rockspecs/moonbuild-1.0.0-4.rockspec new file mode 100644 index 0000000..bdc2480 --- /dev/null +++ b/rockspecs/moonbuild-1.0.0-4.rockspec @@ -0,0 +1,29 @@ +build = { + install = { + bin = { + moonbuild = "bin/moonbuild.lua" + } + }, + modules = { + ["moonbuild.fsutil"] = "moonbuild/fsutil.lua", + ["moonbuild.stringutil"] = "moonbuild/stringutil.lua", + ["moonbuild.tableutil"] = "moonbuild/tableutil.lua", + ["moonbuild.util"] = "moonbuild/util.lua" + }, + type = "builtin" +} +dependencies = { + "lua >= 5.3", + "luafilesystem >= 1.7.0" +} +description = { + detailed = "moonbuild is a small build system that simplifies your build definitions by allowing you to use declarative as well as imperative rules. It represents the build as a DAG with explicit ordering, and doesn't give you any default confusing rules (unlike make)\n", + summary = "Small build system in between make and a build.sh" +} +package = "moonbuild" +rockspec_format = "3.0" +source = { + tag = "v1.0.0", + url = "git://github.com/natnat-mc/moonbuild" +} +version = "1.0.0-4"