lua-ln/rockspec/ln-scm-1.rockspec

21 lines
344 B
Plaintext
Raw Normal View History

2019-12-25 13:32:59 +00:00
package = "ln"
version = "scm-1"
source = {
2019-12-25 13:40:35 +00:00
url = "git+https://tulpa.dev/cadey/lua-ln"
2019-12-25 13:32:59 +00:00
}
description = {
homepage = "https://tulpa.dev/cadey/lua-ln",
2019-12-25 13:40:35 +00:00
license = "0bsd",
summary = "The natural log function"
2019-12-25 13:32:59 +00:00
}
dependencies = {
"lua ~> 5.1",
2019-12-25 13:32:59 +00:00
"dkjson"
}
build = {
type = "builtin",
2019-12-25 13:40:35 +00:00
modules = {
ln = "src/ln.lua"
}
2019-12-25 13:32:59 +00:00
}