mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
35 lines
686 B
Plaintext
35 lines
686 B
Plaintext
|
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"
|
||
|
}
|
||
|
|
||
|
build = {
|
||
|
type = "builtin",
|
||
|
modules = {
|
||
|
["moonscript.compile"] = "moonscript/compile.lua",
|
||
|
["moonscript.parse"] = "moonscript/parse.lua",
|
||
|
["moonscript.dump"] = "moonscript/dump.lua",
|
||
|
["moonscript.data"] = "moonscript/data.lua",
|
||
|
["moonscript.util"] = "moonscript/util.lua",
|
||
|
},
|
||
|
install = {
|
||
|
bin = { "moon", }
|
||
|
}
|
||
|
}
|
||
|
|