moonspeak/moonspeak-scm-1.rockspec

23 lines
616 B
Plaintext
Raw Normal View History

2022-08-10 17:23:18 +02:00
package = "moonspeak"
2022-08-10 17:27:45 +02:00
version = "scm-1"
2022-08-10 17:23:18 +02:00
source = {
url = "git+https://git.doublefourteen.io/lua/moonspeak.git"
}
description = {
2022-08-10 17:44:57 +02:00
summary = "LÖVE game localization library.",
detailed = "A library providing common and structured functionality to make a game available across different languages."
2022-08-10 17:23:18 +02:00
homepage = "https://git.doublefourteen.io/lua/moonspeak",
maintainer = "The DoubleFourteen Code Forge <info@doublefourteen.io>",
license = "zlib"
}
dependencies = {
2022-08-10 17:27:01 +02:00
"lua >= 5.2",
2022-08-10 17:23:18 +02:00
"df-serialize"
}
build = {
type = "builtin",
modules = {
["moonspeak"] = "init.lua"
}
}