moonscript/moonscript-dev-1.rockspec

38 lines
851 B
Plaintext
Raw Normal View History

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",
homepage = "http://leafo.net/moonscript",
maintainer = "Leaf Corcoran <leafot@gmail.com>",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"lpeg >= 0.10",
"alt-getopt >= 0.7",
"luafilesystem >= 1.5"
2011-05-29 04:27:31 +00:00
}
build = {
type = "builtin",
modules = {
2011-06-13 05:38:42 +00:00
["moonscript.compile2"] = "moonscript/compile2.lua",
2011-06-20 02:14:20 +00:00
["moonscript.compile.line"] = "moonscript/compile/line.lua",
["moonscript.compile.format"] = "moonscript/compile/format.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",
},
install = {
bin = { "moon", "moonc" }
2011-05-29 04:27:31 +00:00
}
}