-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwau-dev-1.rockspec
More file actions
35 lines (30 loc) · 968 Bytes
/
wau-dev-1.rockspec
File metadata and controls
35 lines (30 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package = "wau"
version = "dev-1"
source = {
url = "git+https://github.com/Nooo37/wau",
branch = "master",
}
description = {
summary = "Basic client-side lua libwayland bindings",
homepage = "https://github.com/Nooo37/wau",
}
dependencies = {
"xml2lua >= 1.5",
"cffi-lua >= 0.2.1",
}
build = {
type = "builtin",
modules = {
["wau"] = "wau/init.lua",
["wau.core.raw"] = "wau/core/raw.lua",
["wau.core.wl_display"] = "wau/core/wl_display.lua",
["wau.core.wl_interface"] = "wau/core/wl_interface.lua",
["wau.core.wl_proxy"] = "wau/core/wl_proxy.lua",
["wau.cursor.raw"] = "wau/cursor/raw.lua",
["wau.cursor.wl_cursor"] = "wau/cursor/wl_cursor.lua",
["wau.cursor.wl_cursor_image"] = "wau/cursor/wl_cursor_image.lua",
["wau.cursor.wl_cursor_theme"] = "wau/cursor/wl_cursor_theme.lua",
["wau.protocol.wayland"] = "wau/protocol/wayland.lua",
},
copy_directories = { "example" }
}