Skip to content

Commit

Permalink
Updating the rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
andremm committed Aug 7, 2014
1 parent f90c67e commit 9bcd3d6
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 30 deletions.
30 changes: 0 additions & 30 deletions lua-parser-0.1-1.rockspec

This file was deleted.

31 changes: 31 additions & 0 deletions lua-parser-0.1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
--*-lua-*--
package = "lua-parser"
version = "0.1.1-1"
source = {
url = "git://github.com/andremm/lua-parser",
tag = "v0.1.1",
}
description = {
summary = "A Lua 5.3 parser written with LPeg",
detailed = [[
This is a Lua 5.3 parser written with LPeg that generates an AST in
the format specified by Metalua.
The parser also implements an error reporting technique that is
based on tracking the farthest failure position.
]],
homepage = "https://github.com/andremm/lua-parser",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"lpeg >= 0.12",
}
build = {
type="builtin",
modules={
["lua-parser.parser"] = "lua-parser/parser.lua",
["lua-parser.pp"] = "lua-parser/pp.lua",
["lua-parser.scope"] = "lua-parser/scope.lua",
}
}

0 comments on commit 9bcd3d6

Please sign in to comment.