lua-dog/dog-1.0-0.rockspec

23 lines
434 B
Plaintext
Raw Normal View History

2023-05-11 19:51:28 -06:00
package = "dog"
2023-05-11 19:32:59 -06:00
version = "1.0-0"
source = {
2023-05-11 19:51:28 -06:00
url = "https://git.cuates.net/perro/lua-dog/archive/v1.0.0.tar.gz",
2023-05-11 19:32:59 -06:00
}
description = {
summary = "Lua extensions for lazy dogs",
detailed = [[
Adds functions to Lua Standard Libraries.
]],
homepage = "https://git.cuates.net/perro/lua-dog",
license = "GPLv3",
}
dependencies = {
"lua >= 5.4, < 5.5"
}
build = {
type = "builtin",
modules = {
dog = "src/dog.lua"
}
}