37 lines
654 B
Lua
37 lines
654 B
Lua
package = "discount3"
|
|
version = "1.0-1"
|
|
|
|
description = {
|
|
summary = "Lua bindings for the Discount Markdown library V3",
|
|
detailed = [[
|
|
Supports all tags.
|
|
]],
|
|
homepage = "https://gitlabor.ru/Datenlabor/discount3",
|
|
license = "ISC"
|
|
}
|
|
|
|
source = {
|
|
url = "https://gitlabor.ru/Datenlabor/discount3/archive/v1.0.tar.gz"
|
|
}
|
|
|
|
dependencies = {
|
|
"lua = 5.1"
|
|
}
|
|
|
|
external_dependencies = {
|
|
DISCOUNT = {
|
|
header = "mkdio.h",
|
|
library = "markdown"
|
|
}
|
|
}
|
|
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
discount3 = {
|
|
sources = {"discount3.c"},
|
|
libraries = {"markdown"}
|
|
}
|
|
}
|
|
}
|