aboutsummaryrefslogtreecommitdiff
path: root/glum-0.3-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'glum-0.3-1.rockspec')
-rw-r--r--glum-0.3-1.rockspec32
1 files changed, 32 insertions, 0 deletions
diff --git a/glum-0.3-1.rockspec b/glum-0.3-1.rockspec
new file mode 100644
index 0000000..68f0f44
--- /dev/null
+++ b/glum-0.3-1.rockspec
@@ -0,0 +1,32 @@
+package = "glum"
+version = "0.3-1"
+source = {
+ url = "git+https://cogarr.net/source/cgit.cgi/glum"
+}
+description = {
+ summary = "Lua minifieir",
+ detailed = [[
+ A basic lua minifier, with some optimizations
+ and simplifications.
+ ]],
+ homepage = "https://cogarr.net/source/cgit.cgi/glum/about",
+ license = "MIT"
+}
+dependencies = {
+ "lua >= 5.1",
+ "lua-parser >= 1.0.0",
+}
+build = {
+ type = "builtin",
+ modules = {
+ ["glum"] = "src/glum.lua",
+ ["glum.ast_opts"] = "src/ast_opts.lua",
+ ["glum.uglify"] = "src/uglify.lua",
+ },
+ install = {
+ bin = {
+ ["glum"] = "src/minify.lua"
+ }
+ }
+}
+