-
Notifications
You must be signed in to change notification settings - Fork 4
/
lua-jet.rockspec
43 lines (39 loc) · 1016 Bytes
/
lua-jet.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
39
40
41
42
43
package = 'lua-jet'
version = '@VERSION@-1'
source = {
url = 'git://github.com/lipp/lua-jet.git',
tag = '@VERSION@'
}
description = {
summary = 'The JSON Bus. Daemon and Peer implementations for Lua.',
homepage = 'http://jetbus.io',
license = 'MIT/X11'
}
dependencies = {
'lua >= 5.1',
'lua-cjson >= 1.0',
'lua-websockets',
'luasocket',
'lua-ev',
'struct'
}
build = {
type = 'none',
install = {
lua = {
['jet'] = 'src/jet.lua',
['jet.peer'] = 'src/jet/peer.lua',
['jet.socket'] = 'src/jet/socket.lua',
['jet.utils'] = 'src/jet/utils.lua',
['jet.daemon'] = 'src/jet/daemon.lua',
['jet.daemon.value_matcher'] = 'src/jet/daemon/value_matcher.lua',
['jet.daemon.path_matcher'] = 'src/jet/daemon/path_matcher.lua',
['jet.daemon.radix'] = 'src/jet/daemon/radix.lua',
['jet.daemon.sorter'] = 'src/jet/daemon/sorter.lua',
['jet.daemon.fetcher'] = 'src/jet/daemon/fetcher.lua',
},
bin = {
'bin/jetd.lua',
}
}
}