-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbluezdbus-1.0-2.rockspec
More file actions
31 lines (31 loc) · 966 Bytes
/
bluezdbus-1.0-2.rockspec
File metadata and controls
31 lines (31 loc) · 966 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
package = "bluezdbus"
version = "1.0-2"
source = {
url = "git+ssh://git@github.com/ffs97/bluezdbus-lua.git",
tag = "v1.0"
}
description = {
summary = "A wrapper for the BlueZ DBus API written in lua",
detailed = [[
The BluezDBus module implements a wrapper for the BlueZ DBus API based on lgi.
The classes implemented are Manager, Adapter, and Device, each with helper
function to connect to signals and easily read/write properties.
]],
homepage = "https://www.github.com/ffs97/bluezdbus-lua",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"lgi >= 0.9.2"
}
build = {
type = "builtin",
modules = {
["bluezdbus"] = "src/init.lua",
["bluezdbus.adapter"] = "src/adapter.lua",
["bluezdbus.device"] = "src/device.lua",
["bluezdbus.helpers"] = "src/helpers.lua",
["bluezdbus.manager"] = "src/manager.lua",
["bluezdbus.proxy"] = "src/proxy.lua",
}
}