commit 6c239c887a0b53939cc26d68c9fdf42aca53baf0
parent 87eb0adeed882d3ad254d84c02c8b4c1dfb1673c
Author: Frederic Cambus <fred@statdns.com>
Date: Mon, 19 Jun 2017 23:13:30 +0200
Add initial rockspec template
Diffstat:
1 file changed, 29 insertions(+), 0 deletions(-)
diff --git a/motyl.rockspec b/motyl.rockspec
@@ -0,0 +1,29 @@
+package = "Motyl"
+version = ""
+
+source = {
+ url = "git://github.com/fcambus/motyl",
+ tag = ""
+}
+
+description = {
+ summary = "Opinionated blog-aware static site generator written in Lua.",
+ homepage = "https://github.com/fcambus/motyl",
+ license = "BSD"
+}
+
+dependencies = {
+ "lua ~> 5.1",
+ "luafilesystem",
+ "lunamark",
+ "lustache",
+ "lyaml"
+}
+
+build = {
+ install = {
+ bin = {
+ motyl = "src/motyl.lua"
+ }
+ }
+}