-
Notifications
You must be signed in to change notification settings - Fork 0
/
watcher-scm-1.rockspec
executable file
·52 lines (48 loc) · 1.73 KB
/
watcher-scm-1.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
44
45
46
47
48
49
50
51
52
package = 'watcher'
version = 'scm-1'
source = {
url = 'git://github.com/racherb/watcher.git',
branch = 'master',
}
description = {
summary = "Watcher for watches the changes in the file system, variables and data records.",
detailed = [[
Detecting changes to the file system or data structures in memory
is useful for developers of security applications,
resource monitoring or process integration with Tarantool.
]],
homepage = 'https://github.com/racherb/watcher.git',
maintainer = 'Raciel Hernández <[email protected]>',
license = 'MIT',
}
-- Lua version and other packages on which this one depends;
-- Tarantool currently supports strictly Lua 5.1
dependencies = {
'lua == 5.1',
'avro-schema == scm-1',
}
build = {
type = "builtin",
modules = {
["examples.ifexist_do"] = "examples/ifexist_do.lua",
["test.watcher.test"] = "test/watcher.test.lua",
["test.helper"] = "test/helper.lua",
["watcher.db.engine"] = "src/db/engine.lua",
["watcher.db.entity"] = "src/db/entity.lua",
["watcher.db.model"] = "src/db/model.lua",
["watcher.sanity_check"] = "src/sanity_check.lua",
["watcher.file_watcher"] = "src/file_watcher.lua",
["watcher.plugins.backup"] = "src/plugins/backup.lua",
["watcher.plugins.default"] = "src/plugins/default.lua",
["watcher.types.file"] = "src/types/file.lua",
["watcher.util"] = "src/util.lua",
["watcher.watcher"] = "src/watcher.lua",
["watcher.cli"] = "cli/watcher-cli.lua"
},
install = {
bin = {
watcher = 'bin/watcher',
}
}
}
-- vim: syntax=lua ts=4 sts=4 sw=4 et