-
Notifications
You must be signed in to change notification settings - Fork 0
/
sundown-scm-1.rockspec
51 lines (47 loc) · 1.07 KB
/
sundown-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
package = "sundown"
version = "scm-1"
source = {
url = "git://github.com/elikosan/sundown-ffi.git"
}
description = {
summary = "A FFI interface to the Markdown implementation of the Sundown library",
detailed = [[
]],
homepage = "https://github.com/torch/sundown-ffi",
license = "BSD"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
install = {
bin = {
mdcat = "mdcat.lua"
}
},
modules = {
["sundown.env"] = "env.lua",
["sundown.init"] = "init.lua",
["sundown.sdcdefs"] = "sdcdefs.lua",
["sundown.htmlcdefs"] = "htmlcdefs.lua",
["sundown.html"] = "html.lua",
["sundown.ascii"] = "ascii.lua",
libsundown = {
sources = {
"src/autolink.c",
"src/buffer.c",
"src/markdown.c",
"src/stack.c",
"html/houdini_href_e.c",
"html/houdini_html_e.c",
"html/html.c",
"html/html_smartypants.c"
},
incdirs = {
"src/",
"html/"
}
}
}
}