lua-htmlparser/htmlparser-0.1.1-1.rockspec

28 lines
864 B
Plaintext
Raw Permalink Normal View History

package = "htmlparser"
2013-04-05 18:13:53 +00:00
version = "0.1.1-1"
source = {
url = "git://github.com/wscherphof/lua-htmlparser.git",
2013-04-05 18:13:53 +00:00
branch = "v0.1.1"
}
description = {
summary = "Parse HTML text into a tree of elements with selectors",
detailed = [[
Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand.
]],
2013-04-05 20:40:16 +00:00
homepage = "http://wscherphof.github.io/lua-htmlparser/",
license = "MIT"
}
dependencies = {
"lua >= 5.2",
"set >= 0.1",
"lunitx >= 0.6"
}
build = {
type = "builtin",
2013-04-02 10:28:13 +00:00
copy_directories = {"doc", "tst"},
modules = {
htmlparser = "src/htmlparser.lua",
["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua",
["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua"
}
}