From 9bd2ccf6d061d2945d1721de6ee589bd6782f97a Mon Sep 17 00:00:00 2001 From: Sergio Queiroz Date: Thu, 1 Sep 2016 15:56:20 -0300 Subject: Adding rockspeck to version 1.0.0-1 --- rockspecs/lpeglabel-1.0.0-1.rockspec | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 rockspecs/lpeglabel-1.0.0-1.rockspec 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 @@ +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 ", + 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" + } +} -- cgit v1.2.3-55-g6feb