-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lua-evdev.rockspec
35 lines (35 loc) · 1.06 KB
/
lua-evdev.rockspec
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
35
rockspec_format = "3.0"
package = "lua-evdev"
version = "0.0.5-1"
source = {
url = "git+https://github.com/MunifTanjim/lua-evdev.git",
tag = "0.0.5",
}
description = {
summary = "LuaJIT FFI Bindings for libevdev.",
detailed = [[
LuaJIT FFI Bindings for libevdev.
]],
license = "MIT",
homepage = "https://github.com/MunifTanjim/lua-evdev",
issues_url = "https://github.com/MunifTanjim/lua-evdev/issues",
maintainer = "Munif Tanjim (https://muniftanjim.dev)",
labels = { "evdev", "libevdev", "ffi" },
}
build = {
type = "builtin",
modules = {
["evdev.device"] = "evdev/device.lua",
["evdev.event"] = "evdev/event.lua",
["evdev.libevdev"] = "evdev/libevdev.lua",
["evdev.libevdev-uinput"] = "evdev/libevdev-uinput.lua",
["evdev.linux.input"] = "evdev/linux/input.lua",
["evdev.linux.input-constant"] = "evdev/linux/input-constant.lua",
["evdev.linux.sys.ioctl"] = "evdev/linux/sys/ioctl.lua",
["evdev.uinput-device"] = "evdev/uinput-device.lua",
["evdev.util"] = "evdev/util.lua",
},
}
supported_platforms = {
"linux",
}