[*] Initial commit.

This commit is contained in:
2022-08-10 17:23:18 +02:00
commit 2db9f7c4a1
5 changed files with 232 additions and 0 deletions

21
moonspeak-scm-1.rockspec Normal file
View File

@@ -0,0 +1,21 @@
package = "moonspeak"
version = "scm"
source = {
url = "git+https://git.doublefourteen.io/lua/moonspeak.git"
}
description = {
summary = "LÖVE game localization library",
homepage = "https://git.doublefourteen.io/lua/moonspeak",
maintainer = "The DoubleFourteen Code Forge <info@doublefourteen.io>",
license = "zlib"
}
dependencies = {
"lua >= 5.2"
"df-serialize"
}
build = {
type = "builtin",
modules = {
["moonspeak"] = "init.lua"
}
}