forked from jgm/djot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrockspec.in
43 lines (43 loc) · 1.17 KB
/
rockspec.in
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
rockspec_format = "3.0"
package = "djot"
version = "_VERSION-_REVISION"
source = {
url = "git+https://github.com/jgm/djot",
tag = "_VERSION"
}
description = {
summary = "Djot light markup parser",
detailed = [[
Djot is a light markup format and a library and program
that parses it.
]],
homepage = "https://github.com/jgm/djot",
license = "MIT",
issues_url = "https://github.com/jgm/djot/issues",
maintainer = "John MacFarlane <[email protected]>"
}
dependencies = {
"lua >= 5.1"
}
test_dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
["djot"] = "djot.lua",
["djot.attributes"] = "djot/attributes.lua",
["djot.inline"] = "djot/inline.lua",
["djot.block"] = "djot/block.lua",
["djot.ast"] = "djot/ast.lua",
["djot.emoji"] = "djot/emoji.lua",
["djot.html"] = "djot/html.lua",
["djot.filter"] = "djot/filter.lua",
["djot.json"] = "djot/json.lua",
},
install = {
bin = {
["djot"] = "bin/main.lua",
}
}
}