size: 1 KiB
| 1 | rockspec_format = "3.0" |
| 2 | package = "djot" |
| 3 | version = "_VERSION-_REVISION" |
| 4 | source = { |
| 5 | url = "git+https://github.com/jgm/djot.lua", |
| 6 | tag = "_VERSION" |
| 7 | } |
| 8 | description = { |
| 9 | summary = "Djot light markup parser", |
| 10 | detailed = [[ |
| 11 | Djot is a light markup format and a library and program |
| 12 | that parses it. |
| 13 | ]], |
| 14 | homepage = "https://github.com/jgm/djot.lua", |
| 15 | license = "MIT", |
| 16 | issues_url = "https://github.com/jgm/djot.lua/issues", |
| 17 | maintainer = "John MacFarlane <jgm@berkeley.edu>" |
| 18 | } |
| 19 | dependencies = { |
| 20 | "lua >= 5.1" |
| 21 | } |
| 22 | test_dependencies = { |
| 23 | "lua >= 5.1", |
| 24 | "luaposix >= 36.2" |
| 25 | } |
| 26 | build = { |
| 27 | type = "builtin", |
| 28 | modules = { |
| 29 | ["djot"] = "djot.lua", |
| 30 | ["djot.attributes"] = "djot/attributes.lua", |
| 31 | ["djot.inline"] = "djot/inline.lua", |
| 32 | ["djot.block"] = "djot/block.lua", |
| 33 | ["djot.ast"] = "djot/ast.lua", |
| 34 | ["djot.html"] = "djot/html.lua", |
| 35 | ["djot.filter"] = "djot/filter.lua", |
| 36 | ["djot.json"] = "djot/json.lua", |
| 37 | }, |
| 38 | install = { |
| 39 | bin = { |
| 40 | ["djot"] = "bin/main.lua", |
| 41 | } |
| 42 | } |
| 43 | } |