Moved examples to tofix because fixing them is besides the point right now.
27 lines
No EOL
621 B
Lua
27 lines
No EOL
621 B
Lua
package = "parser-gen"
|
|
version = "1.1-0"
|
|
source = {
|
|
url = "git://github.com/vsbenas/parser-gen",
|
|
tag = "v1.1"
|
|
}
|
|
description = {
|
|
summary = "A PEG parser generator that handles space characters, generates ASTs and adds error labels automatically.",
|
|
homepage = "https://github.com/vsbenas/parser-gen",
|
|
license = "MIT/X11"
|
|
}
|
|
dependencies = {
|
|
"lua >= 5.1, < 5.4",
|
|
"lpeglabel >= 0.12.2"
|
|
}
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
["parser-gen"] = "parser-gen.lua",
|
|
["peg-parser"] = "peg-parser.lua",
|
|
["stack"] = "stack.lua",
|
|
["equals"] = "equals.lua",
|
|
["errorgen"] = "errorgen.lua",
|
|
|
|
|
|
}
|
|
} |