inifile/inifile-dev-1.rockspec

30 lines
629 B
Plaintext
Raw Permalink Normal View History

2021-07-26 12:53:19 +00:00
package = "inifile"
version = "dev-1"
source = {
url = "git://github.com/bartbes/inifile.git",
dir = "inifile",
}
description = {
summary = "Inifile is a simple, complete ini parser for lua",
detailed = [[
Inifile is a simple, complete ini parser for lua that intends to preserve
as much information as possible, like the order of the file and the stored
comments. It is also out-of-the-box compatible with LÖVE.
]],
2024-02-20 16:21:49 +00:00
homepage = "https://github.com/bartbes/inifile",
2021-07-26 12:53:19 +00:00
license = "Simplified BSD license",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
inifile = "inifile.lua"
}
}