Skip to content

Commit 5ffced9

Browse files
committed
chore: release 0.0.1-1
1 parent 33065ef commit 5ffced9

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
rockspec_format = "3.0"
2+
package = "lua-evdev"
3+
version = "0.0.1-1"
4+
source = {
5+
url = "git+https://github.com/MunifTanjim/lua-evdev.git",
6+
tag = version,
7+
}
8+
description = {
9+
summary = "LuaJIT FFI Bindings for libevdev.",
10+
detailed = [[
11+
LuaJIT FFI Bindings for libevdev.
12+
]],
13+
license = "MIT",
14+
homepage = "https://github.com/MunifTanjim/lua-evdev",
15+
issues_url = "https://github.com/MunifTanjim/lua-evdev/issues",
16+
maintainer = "Munif Tanjim (https://muniftanjim.dev)",
17+
labels = { "evdev", "libevdev", "ffi" },
18+
}
19+
build = {
20+
type = "builtin",
21+
modules = {
22+
["evdev.device"] = "evdev/device.lua",
23+
["evdev.event"] = "evdev/event.lua",
24+
["evdev.libevdev"] = "evdev/libevdev.lua",
25+
["evdev.libevdev-uinput"] = "evdev/libevdev-uinput.lua",
26+
["evdev.linux.input"] = "evdev/linux/input.lua",
27+
["evdev.linux.input-constant"] = "evdev/linux/input-constant.lua",
28+
["evdev.linux.sys.ioctl"] = "evdev/linux/sys/ioctl.lua",
29+
["evdev.util"] = "evdev/util.lua",
30+
},
31+
}
32+
supported_platforms = {
33+
"linux",
34+
}

0 commit comments

Comments
 (0)