-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathluals2dox-scm-2.rockspec
45 lines (40 loc) · 1 KB
/
luals2dox-scm-2.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
---@diagnostic disable: lowercase-global
rockspec_format = '3.0'
package = 'luals2dox'
version = 'scm-2'
source = {
url = 'git+https://github.com/AndreasMatthias/Luals2dox.git',
branch = 'main'
}
description = {
summary = 'Doxygen filter for Lua files.',
detailed = [[
Luals2dox is an input filter for Doxygen that filters Lua files.
Lua files shall be annotated for use with LuaLS, the Lua Language Server,
that is a necessary requirement for Luals2dox.
]],
labels ={'doxygen', 'documentation'},
homepage = 'https://github.com/AndreasMatthias/Luals2dox',
license = 'GPLv3'
}
dependencies = {
'lua >= 5.3',
'lpeg',
'argparse',
'lua-cjson',
'penlight',
'f-strings',
}
build = {
type = 'builtin',
modules = {
['luals2dox.init'] = 'src/luals2dox/init.lua',
['luals2dox.core'] = 'src/luals2dox/core.lua',
['luals2dox.args'] = 'src/luals2dox/args.lua',
},
install = {
bin = {
['luals2dox'] = 'src/l2d.lua'
}
},
}