aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgarret <garret@airmail.cc>2022-11-30 21:39:06 +0000
committergarret <garret@airmail.cc>2022-11-30 21:39:13 +0000
commitb5beff676f7d2653fd68401728aea88400701174 (patch)
tree5cb84b9b2a7688cb137f6825767e03fadae320d7
parent0582a099555d19c42c4d6b3151fd4331c9056efe (diff)
downloaddepctrl-feedmaker-b5beff676f7d2653fd68401728aea88400701174.tar.gz
depctrl-feedmaker-b5beff676f7d2653fd68401728aea88400701174.tar.bz2
depctrl-feedmaker-b5beff676f7d2653fd68401728aea88400701174.zip
add rockspec
seems to work
-rw-r--r--depctrl-feedmaker-dev-1.rockspec25
1 files changed, 25 insertions, 0 deletions
diff --git a/depctrl-feedmaker-dev-1.rockspec b/depctrl-feedmaker-dev-1.rockspec
new file mode 100644
index 0000000..fb4896f
--- /dev/null
+++ b/depctrl-feedmaker-dev-1.rockspec
@@ -0,0 +1,25 @@
+package = "depctrl-feedmaker"
+version = "dev-1"
+source = {
+ url = "git+https://git.427738.xyz/depctrl-feedmaker"
+}
+description = {
+ summary = "Makes DependencyControl update feeds for Aegisub automations, so you don't have to write all that JSON by hand.",
+ homepage = "https://git.427738.xyz/depctrl-feedmaker/about/",
+ license = "BSD-2-Clause"
+}
+dependencies = {
+ "lua ~> 5.1",
+ "luajson",
+ "sha1",
+ "luafilesystem",
+ "argparse",
+ "moonscript",
+ "inspect" -- not actually used
+}
+build = {
+ type = "none",
+ install = {
+ bin = {"make-feed.lua"}
+ }
+}