From 3bdae9b28b335503e9b90e09de912fc737853feb Mon Sep 17 00:00:00 2001 From: Bart van Strien Date: Mon, 2 Feb 2015 19:46:23 +0100 Subject: [PATCH] Add rockspec for inifile --- inifile/inifile-1.0-1.rockspec | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 inifile/inifile-1.0-1.rockspec diff --git a/inifile/inifile-1.0-1.rockspec b/inifile/inifile-1.0-1.rockspec new file mode 100644 index 0000000..12b9871 --- /dev/null +++ b/inifile/inifile-1.0-1.rockspec @@ -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" + } +}