diff options
author | kotontrion <[email protected]> | 2024-05-20 11:07:35 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-05-20 11:07:35 +0200 |
commit | 913738ccc1e9fdc75445d4a5726f8dc9542a6d4e (patch) | |
tree | 4357264dc804aa6866fa9d10181b7c86cb3e0f26 /lua | |
parent | 5f41c07d12ba8d1683eb46e21dcde6fc6f31edb4 (diff) |
add rockspec file for packaging lua bindings
Diffstat (limited to 'lua')
-rw-r--r-- | lua/astal-dev-1.rockspec | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lua/astal-dev-1.rockspec b/lua/astal-dev-1.rockspec new file mode 100644 index 0000000..35517d3 --- /dev/null +++ b/lua/astal-dev-1.rockspec @@ -0,0 +1,22 @@ +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" +} +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", + } +} |