-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrockspec.in
48 lines (48 loc) · 1.58 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
44
45
46
47
48
package = "cmark"
version = "_VERSION-_REVISION"
source = {
url = "git://github.com/jgm/cmark-lua",
tag = "_VERSION"
}
description = {
summary = [[Lua wrapper for libcmark, CommonMark Markdown parsing
and rendering library]],
detailed = [[cmark exposes the entire API of libcmark, as
documented in the `cmark(3)` man page, and adds a
more lua-esque interface for walking the node tree.]],
homepage = "https://github.com/jgm/cmark-lua",
license = "BSD2",
maintainer = "John MacFarlane <[email protected]>",
}
dependencies = {
}
build = {
type = "builtin",
modules = {
cmark = {
sources = { "cmark_wrap.c",
"ext/blocks.c",
"ext/houdini_html_u.c",
"ext/references.c",
"ext/buffer.c",
"ext/html.c",
"ext/render.c",
"ext/cmark.c",
"ext/inlines.c",
"ext/scanners.c",
"ext/cmark_ctype.c",
"ext/iterator.c",
"ext/utf8.c",
"ext/commonmark.c",
"ext/latex.c",
"ext/xml.c",
"ext/houdini_href_e.c",
"ext/man.c",
"ext/houdini_html_e.c",
"ext/node.c",
},
incdirs = { ".", "ext" }
},
["cmark.builder"] = "cmark/builder.lua"
},
}