The goal of stage 06 is to try parse zig synax in lua. I pulled in lpeglable 1.2.0 and parser-gen off github to get started. All of this needs to be cleaned up rather soon. Lua boostraps using tcc and musl from the previous stage. Since musl 0.6.0 doesn't support dynamic linking this build of lua doesn't support shared libraries. I couldn't easily patch musl with dlopen and friends so instead I link statically and call deps with c api.
32 lines
1 KiB
Lua
32 lines
1 KiB
Lua
package = "LPegLabel"
|
|
version = "1.1.0-1"
|
|
source = {
|
|
url = "https://github.com/sqmedeiros/lpeglabel/archive/v1.1.0-1.tar.gz",
|
|
tag = "v1.1.0-1",
|
|
dir = "lpeglabel-1.1.0-1",
|
|
}
|
|
description = {
|
|
summary = "Parsing Expression Grammars For Lua with Labeled Failures",
|
|
detailed = [[
|
|
LPegLabel is a conservative extension of the LPeg library that provides
|
|
an implementation of Parsing Expression Grammars (PEGs) with labeled failures.
|
|
Labels can be used to signal different kinds of erros and to specify which
|
|
which recovery pattern should handle a given label.
|
|
Labels can also be combined with the standard patterns of LPeg.
|
|
]],
|
|
homepage = "https://github.com/sqmedeiros/lpeglabel/",
|
|
maintainer = "Sergio Medeiros <sqmedeiros@gmail.com>",
|
|
license = "MIT/X11"
|
|
}
|
|
dependencies = {
|
|
"lua >= 5.1",
|
|
}
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
lpeglabel = {
|
|
"lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c"
|
|
},
|
|
relabel = "relabel.lua"
|
|
}
|
|
}
|