diff options
author | Aylur <[email protected]> | 2024-10-15 01:26:32 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-15 01:26:32 +0200 |
commit | 2f71cd4c08bb4514efe43533e6a5d03535204c29 (patch) | |
tree | fc991a12e159ad645187862c90f40731794d6e47 /lang/lua/astal-dev-1.rockspec | |
parent | 9fab13452a26ed55c01047d4225f699f43bba20d (diff) |
refactor lua and gjs lib
Diffstat (limited to 'lang/lua/astal-dev-1.rockspec')
-rw-r--r-- | lang/lua/astal-dev-1.rockspec | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lang/lua/astal-dev-1.rockspec b/lang/lua/astal-dev-1.rockspec new file mode 100644 index 0000000..d392a79 --- /dev/null +++ b/lang/lua/astal-dev-1.rockspec @@ -0,0 +1,31 @@ +package = "astal" +version = "dev-1" + +source = { + url = "git+https://github.com/aylur/astal", +} + +description = { + summary = "lua bindings for libastal.", + homepage = "https://aylur.github.io/astal/", + license = "GPL-3", +} + +dependencies = { + "lua >= 5.1, < 5.4", + "lgi >= 0.9.2", +} + +build = { + type = "builtin", + modules = { + ["astal.application"] = "lib/application.lua", + ["astal.binding"] = "lib/binding.lua", + ["astal.init"] = "lib/init.lua", + ["astal.process"] = "lib/process.lua", + ["astal.time"] = "lib/time.lua", + ["astal.variable"] = "lib/variable.lua", + ["astal.widget"] = "lib/widget.lua", + ["astal.file"] = "lib/file.lua", + }, +} |