1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
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.
]],
homepage = "https://github.com/bartbes/inifile",
license = "Simplified BSD license",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
inifile = "inifile.lua"
}
}
|