diff options
author | Aylur <[email protected]> | 2024-05-20 11:26:17 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-05-20 11:26:17 +0200 |
commit | f81468a398a0b1363b77d1052498554f7bd2682a (patch) | |
tree | 4357264dc804aa6866fa9d10181b7c86cb3e0f26 | |
parent | 5f41c07d12ba8d1683eb46e21dcde6fc6f31edb4 (diff) | |
parent | 913738ccc1e9fdc75445d4a5726f8dc9542a6d4e (diff) |
Merge pull request #1 from kotontrion/package/luarocks
add rockspec file for packaging lua bindings
-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", + } +} |