forked from dsanson/argmap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathargmap-3.6.0-7.rockspec
41 lines (41 loc) · 1.18 KB
/
argmap-3.6.0-7.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
rockspec_format="3.0"
package = "argmap"
version = "3.6.0-7"
source = {
url = "git+ssh://[email protected]/s6mike/argmap.git",
tag = "v3.6.0",
}
description = {
summary = "Tools for working with argument maps.",
detailed = "Convert YAML into .mup, vice versa, upload to Mindmup, and pandoc integration. See [README.md](README.md), and [CHANGELOG.md](docs/CHANGELOG.md) for change notes.",
homepage = "https://github.com/s6mike/argmap)",
issues_url = "https://github.com/s6mike/argmap/issues",
license = "MIT",
maintainer = "Michael Hayes <[email protected]>",
labels = {"argumentation", "mindmap"},
}
supported_platforms = {"linux"}
dependencies = {
"lua ~> 5.3",
"lualogging ~> 1.6.0-2",
"lyaml ~> 6.2.7-1",
"penlight ~> 1.12.0-2",
"rxi-json-lua ~> e1dbe93-0",
}
external_dependencies = {
YAML = {library="libyaml.so"}
}
build = {
type = "builtin",
modules = {
config_argmap = "src/config_argmap.lua",
argmap2mup = "src/argmap2mup.lua",
argmap2tikz = "src/argmap2tikz.lua",
mup2argmap = "src/mup2argmap.lua",
["pandoc-argmap"] = "src/pandoc-argmap.lua",
},
test = {
type = "command",
command ="test/tests.sh",
},
}