-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63e712a
commit 9bd2ccf
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package = "LPegLabel" | ||
version = "1.0.0-1" | ||
source = { | ||
url = "https://github.com/sqmedeiros/lpeglabel/archive/v1.0.0-1.tar.gz", | ||
tag = "v1.0.0-1", | ||
dir = "lpeglabel-1.0.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 | ||
alternative in a labeled ordered choice 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 <[email protected]>", | ||
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" | ||
} | ||
} |