Add rockspec for inifile

This commit is contained in:
Bart van Strien 2015-02-02 19:46:23 +01:00
parent 1f129c9718
commit 3bdae9b28b

View File

@ -0,0 +1,29 @@
package = "inifile"
version = "1.0-1"
source = {
url = "git://github.com/bartbes/love-misc-libs.git",
dir = "love-misc-libs/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 = "http://docs.bartbes.com/inifile",
license = "Simplified BSD license",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
inifile = "inifile.lua"
}
}