-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathslaxml-0.8-1.rockspec
28 lines (26 loc) · 950 Bytes
/
slaxml-0.8-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package = "SLAXML"
version = "0.8-1"
source = {
url = "git://github.com/Phrogz/SLAXML",
tag = "v0.8.1"
}
description = {
summary = "SAX-like streaming XML parser for Lua",
detailed = [[
SLAXML is a pure-Lua SAX-like streaming XML parser. It is more robust than many (simpler) pattern-based parsers that exist (such as http://phrogz.net/lua/AKLOMParser.lua), properly supporting code like <expr test="5 > 7" />, CDATA nodes, comments, namespaces, and processing instructions.
It is currently not a truly valid XML parser, however, as it allows certain XML that is syntactically-invalid (not well-formed) to be parsed without reporting an error.
]],
homepage = "https://github.com/Phrogz/SLAXML",
maintainer = "Gavin Kistner <[email protected]>",
license = "MIT"
}
dependencies = {
"lua >= 5.1, <= 5.4",
}
build = {
type = "builtin",
modules = {
["slaxml"] = "slaxml.lua",
["slaxdom"] = "slaxdom.lua"
}
}