Addint rockspec for 036

This commit is contained in:
Vadim A. Misbakh-Soloviov 2019-06-09 20:09:49 +03:00
parent b5362e0e55
commit cc8e4f6717
No known key found for this signature in database
GPG Key ID: 6765F46F28E9607E

View File

@ -0,0 +1,26 @@
package = "htmlparser"
version = "0.3.6-1"
source = {
url = "git+https://github.com/msva/lua-htmlparser",
tag = "v0.3.6"
}
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.
]],
homepage = "http://msva.github.io/lua-htmlparser/",
license = "LGPL+"
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
copy_directories = {"doc", "tst"},
modules = {
htmlparser = "src/htmlparser.lua",
["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua",
["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua"
}
}