lua-dog/lua-dog-1.1.0-1.rockspec

24 lines
521 B
Plaintext
Raw Permalink Normal View History

2023-05-11 19:54:34 -06:00
package = "lua-dog"
2023-06-16 20:54:05 -06:00
version = "1.1.0-1"
2023-05-11 19:32:59 -06:00
source = {
url = "https://gitlab.com/perritotuerto/codigo/lua-dog/-/archive/v" ..
version .. "/lua-dog-v" .. version .. ".tar.gz",
2023-05-11 19:32:59 -06:00
}
description = {
summary = "Lua extensions for lazy dogs",
detailed = [[
Extends Lua Standard Libraries and Pandoc Library.
2023-05-11 19:32:59 -06:00
]],
2023-05-11 20:14:38 -06:00
homepage = "https://gitlab.com/perritotuerto/codigo/lua-dog/",
2023-05-11 19:32:59 -06:00
license = "GPLv3",
}
dependencies = {
"lua >= 5.4, < 5.5"
}
build = {
type = "builtin",
modules = {
2023-05-11 20:43:27 -06:00
dog = "src/dog.lua"
2023-05-11 19:32:59 -06:00
}
}