aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergio Queiroz <sqmedeiros@gmail.com>2016-09-01 15:56:20 -0300
committerSergio Queiroz <sqmedeiros@gmail.com>2016-09-01 15:56:20 -0300
commit9bd2ccf6d061d2945d1721de6ee589bd6782f97a (patch)
treea06a2efb210da0a2f2415a80fa5a3cf28432198f
parent63e712a2fe81d917389463b7d4b069b0d18a2ffa (diff)
downloadlpeglabel-9bd2ccf6d061d2945d1721de6ee589bd6782f97a.tar.gz
lpeglabel-9bd2ccf6d061d2945d1721de6ee589bd6782f97a.tar.bz2
lpeglabel-9bd2ccf6d061d2945d1721de6ee589bd6782f97a.zip
Adding rockspeck to version 1.0.0-1
-rw-r--r--rockspecs/lpeglabel-1.0.0-1.rockspec32
1 files changed, 32 insertions, 0 deletions
diff --git a/rockspecs/lpeglabel-1.0.0-1.rockspec b/rockspecs/lpeglabel-1.0.0-1.rockspec
new file mode 100644
index 0000000..d19b833
--- /dev/null
+++ b/rockspecs/lpeglabel-1.0.0-1.rockspec
@@ -0,0 +1,32 @@
1package = "LPegLabel"
2version = "1.0.0-1"
3source = {
4 url = "https://github.com/sqmedeiros/lpeglabel/archive/v1.0.0-1.tar.gz",
5 tag = "v1.0.0-1",
6 dir = "lpeglabel-1.0.0-1",
7}
8description = {
9 summary = "Parsing Expression Grammars For Lua with Labeled Failures",
10 detailed = [[
11 LPegLabel is a conservative extension of the LPeg library that provides
12 an implementation of Parsing Expression Grammars (PEGs) with labeled failures.
13 Labels can be used to signal different kinds of erros and to specify which
14 alternative in a labeled ordered choice should handle a given label.
15 Labels can also be combined with the standard patterns of LPeg.
16 ]],
17 homepage = "https://github.com/sqmedeiros/lpeglabel/",
18 maintainer = "Sergio Medeiros <sqmedeiros@gmail.com>",
19 license = "MIT/X11"
20}
21dependencies = {
22 "lua >= 5.1",
23}
24build = {
25 type = "builtin",
26 modules = {
27 lpeglabel = {
28 "lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c"
29 },
30 relabel = "relabel.lua"
31 }
32}