2011-05-29 04:27:31 +00:00
|
|
|
package = "moonscript"
|
|
|
|
version = "dev-1"
|
|
|
|
|
|
|
|
source = {
|
|
|
|
url = "git://github.com/leafo/moonscript.git"
|
|
|
|
}
|
|
|
|
|
|
|
|
description = {
|
|
|
|
summary = "A little language that compiles to Lua",
|
2011-08-13 17:38:13 +00:00
|
|
|
homepage = "http://moonscript.org",
|
2011-05-29 04:27:31 +00:00
|
|
|
maintainer = "Leaf Corcoran <leafot@gmail.com>",
|
|
|
|
license = "MIT"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies = {
|
|
|
|
"lua >= 5.1",
|
|
|
|
"lpeg >= 0.10",
|
2011-05-29 16:33:25 +00:00
|
|
|
"alt-getopt >= 0.7",
|
|
|
|
"luafilesystem >= 1.5"
|
2011-05-29 04:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build = {
|
|
|
|
type = "builtin",
|
|
|
|
modules = {
|
2011-07-23 07:01:21 +00:00
|
|
|
["moonscript"] = "moonscript/init.lua",
|
2011-07-04 16:23:22 +00:00
|
|
|
["moonscript.compile"] = "moonscript/compile.lua",
|
2011-06-20 02:14:20 +00:00
|
|
|
["moonscript.compile.line"] = "moonscript/compile/line.lua",
|
2011-07-04 16:23:22 +00:00
|
|
|
["moonscript.compile.value"] = "moonscript/compile/value.lua",
|
2011-06-20 02:14:20 +00:00
|
|
|
["moonscript.compile.format"] = "moonscript/compile/format.lua",
|
2011-08-11 04:16:41 +00:00
|
|
|
["moonscript.compile.types"] = "moonscript/compile/types.lua",
|
2011-05-29 04:27:31 +00:00
|
|
|
["moonscript.parse"] = "moonscript/parse.lua",
|
|
|
|
["moonscript.dump"] = "moonscript/dump.lua",
|
|
|
|
["moonscript.data"] = "moonscript/data.lua",
|
|
|
|
["moonscript.util"] = "moonscript/util.lua",
|
2011-07-19 06:17:45 +00:00
|
|
|
["moonscript.errors"] = "moonscript/errors.lua",
|
2011-07-19 06:53:43 +00:00
|
|
|
["moonscript.version"] = "moonscript/version.lua",
|
2011-05-29 04:27:31 +00:00
|
|
|
},
|
|
|
|
install = {
|
2011-05-29 16:33:25 +00:00
|
|
|
bin = { "moon", "moonc" }
|
2011-05-29 04:27:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|