summaryrefslogtreecommitdiff
path: root/core/lua/astal-dev-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'core/lua/astal-dev-1.rockspec')
-rw-r--r--core/lua/astal-dev-1.rockspec31
1 files changed, 31 insertions, 0 deletions
diff --git a/core/lua/astal-dev-1.rockspec b/core/lua/astal-dev-1.rockspec
new file mode 100644
index 0000000..7f5ae95
--- /dev/null
+++ b/core/lua/astal-dev-1.rockspec
@@ -0,0 +1,31 @@
+package = "astal"
+version = "dev-1"
+
+source = {
+ url = "git+https://github.com/astal-sh/libastal",
+}
+
+description = {
+ summary = "lua bindings for libastal.",
+ homepage = "https://github.com/astal-sh/libastal",
+ license = "GPL-3",
+}
+
+dependencies = {
+ "lua >= 5.1, < 5.4",
+ "lgi >= 0.9.2",
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["astal.application"] = "astal/application.lua",
+ ["astal.binding"] = "astal/binding.lua",
+ ["astal.init"] = "astal/init.lua",
+ ["astal.process"] = "astal/process.lua",
+ ["astal.time"] = "astal/time.lua",
+ ["astal.variable"] = "astal/variable.lua",
+ ["astal.widget"] = "astal/widget.lua",
+ ["astal.file"] = "astal/file.lua",
+ },
+}