-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathmqtt-0.0-0.rockspec
38 lines (32 loc) · 942 Bytes
/
mqtt-0.0-0.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
36
37
38
package = "mqtt"
version = "0.0-0"
source = {
url = "https://github.com/downloads/geekscape/mqtt_lua/mqtt_lua-0.0.tar.gz"
}
description = {
summary = "Lua MQTT client",
detailed = [[
MQTT (Message Queue Telemetry Transport) client-side implementation ...
http://mqtt.org
Based on the "MQTT protocol specification 3.1" ...
https://www.ibm.com/developerworks/webservices/library/ws-mqtt
]],
homepage = "https://geekscape.github.com/mqtt_lua",
license = "AGPLv3 or commercial",
maintainer = "Andy Gelme (@geekscape)"
}
dependencies = {
"lua >= 5.1",
"luasocket >= 2.0.2"
}
build = {
type = "builtin",
modules = {
lapp = "lua/lapp.lua",
mqtt_library = "lua/mqtt_library.lua",
mqtt_publish = "lua/example/mqtt_publish.lua",
mqtt_subscribe = "lua/example/mqtt_subscribe.lua",
mqtt_test = "lua/example/mqtt_test.lua",
utility = "lua/utility.lua"
}
}