discount3/discount3-1.0-1.rockspec
2025-12-14 22:26:00 +04:00

40 lines
719 B
Lua

package = "discount3"
version = "1.0-1"
rockspec_format = '3.0'
description = {
summary = "Lua bindings for the Discount Markdown library V3",
detailed = [[
Supports all tags.
]],
homepage = "https://gitlabor.ru/Datenlabor/discount3",
labels = { 'markdown', 'discount'} ,
license = "ISC"
}
source = {
url = "https://gitlabor.ru/Datenlabor/discount3/",
tag = "1.0-1"
}
dependencies = {
"lua = 5.1"
}
external_dependencies = {
DISCOUNT = {
header = "mkdio.h",
library = "markdown"
}
}
build = {
type = "builtin",
modules = {
discount3 = {
sources = {"discount3.c"},
libraries = {"markdown"}
}
}
}