Add meta files

This commit is contained in:
mpeterv
2015-09-10 17:31:22 +03:00
parent a15ea45b82
commit 0c1e6e703d
3 changed files with 44 additions and 0 deletions

20
markdown-scm-1.rockspec Normal file
View File

@@ -0,0 +1,20 @@
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"
}
build = {
type = "builtin",
modules = {
markdown = "markdown.lua"
}
}