mirror of https://gitea.it/1414codeforge/gear
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
632 B
Lua
29 lines
632 B
Lua
rockspec_format = "3.0"
|
|
package = "df-utils"
|
|
version = "scm-1"
|
|
source = {
|
|
url = "git+https://git.doublefourteen.io/lua/df-utils.git"
|
|
}
|
|
description = {
|
|
summary = "The DoubleFourteen LÖVE Utility Library",
|
|
homepage = "https://git.doublefourteen.io/lua/df-utils",
|
|
maintainer = "The DoubleFourteen Code Forge <info@doublefourteen.io>",
|
|
license = "zlib",
|
|
labels = { "math", "physics", "algorithms", "love", "game" }
|
|
}
|
|
dependencies = {
|
|
"lua >= 5.2"
|
|
}
|
|
test_dependencies = {
|
|
"busted"
|
|
}
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
["df-utils"] = "init.lua"
|
|
}
|
|
}
|
|
test = {
|
|
type = "busted"
|
|
}
|