package = "moonscript" version = "dev-1" source = { url = "git://github.com/leafo/moonscript.git" } description = { summary = "A little language that compiles to Lua", homepage = "http://leafo.net/moonscript", maintainer = "Leaf Corcoran ", license = "MIT" } dependencies = { "lua >= 5.1", "lpeg >= 0.10", "alt-getopt >= 0.7", "luafilesystem >= 1.5" } build = { type = "builtin", modules = { ["moonscript.compile"] = "moonscript/compile.lua", ["moonscript.compile.line"] = "moonscript/compile/line.lua", ["moonscript.compile.value"] = "moonscript/compile/value.lua", ["moonscript.compile.format"] = "moonscript/compile/format.lua", ["moonscript.parse"] = "moonscript/parse.lua", ["moonscript.dump"] = "moonscript/dump.lua", ["moonscript.data"] = "moonscript/data.lua", ["moonscript.util"] = "moonscript/util.lua", ["moonscript.init"] = "moonscript/init.lua", ["moonscript.errors"] = "moonscript/errors.lua", }, install = { bin = { "moon", "moonc" } } }