Skip to content

Commit 9bcd3d6

Browse files
committed
Updating the rockspec
1 parent f90c67e commit 9bcd3d6

File tree

2 files changed

+31
-30
lines changed

2 files changed

+31
-30
lines changed

lua-parser-0.1-1.rockspec

Lines changed: 0 additions & 30 deletions
This file was deleted.

lua-parser-0.1.1-1.rockspec

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
--*-lua-*--
2+
package = "lua-parser"
3+
version = "0.1.1-1"
4+
source = {
5+
url = "git://github.com/andremm/lua-parser",
6+
tag = "v0.1.1",
7+
}
8+
description = {
9+
summary = "A Lua 5.3 parser written with LPeg",
10+
detailed = [[
11+
This is a Lua 5.3 parser written with LPeg that generates an AST in
12+
the format specified by Metalua.
13+
The parser also implements an error reporting technique that is
14+
based on tracking the farthest failure position.
15+
]],
16+
homepage = "https://github.com/andremm/lua-parser",
17+
license = "MIT"
18+
}
19+
dependencies = {
20+
"lua >= 5.1",
21+
"lpeg >= 0.12",
22+
}
23+
build = {
24+
type="builtin",
25+
modules={
26+
["lua-parser.parser"] = "lua-parser/parser.lua",
27+
["lua-parser.pp"] = "lua-parser/pp.lua",
28+
["lua-parser.scope"] = "lua-parser/scope.lua",
29+
}
30+
}
31+

0 commit comments

Comments
 (0)