markdown/markdown-scm-1.rockspec
2015-09-27 17:49:28 +03:00

22 lines
484 B
Lua

package = "Markdown"
version = "scm-1"
source = {
url = "git://github.com/mpeterv/markdown"
}
description = {
summary = "Markdown text-to-html markup system.",
detailed = "A pure-lua implementation of the Markdown text-to-html markup system.",
license = "MIT/X11",
homepage = "https://github.com/mpeterv/markdown"
}
dependencies = {
"lua >= 5.1, < 5.4"
}
build = {
type = "builtin",
modules = {
markdown = "markdown.lua"
},
copy_directories = {}
}