mirror of
https://github.com/msva/lua-htmlparser.git
synced 2024-11-04 23:34:20 +00:00
added 0.3.9 rockspec
This commit is contained in:
parent
5a59532055
commit
e1a0c648e4
29
rockspecs/htmlparser-0.3.9-1.rockspec
Normal file
29
rockspecs/htmlparser-0.3.9-1.rockspec
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
package = "htmlparser"
|
||||||
|
version = "0.3.9-1"
|
||||||
|
source = {
|
||||||
|
url = "git+https://github.com/msva/lua-htmlparser",
|
||||||
|
tag = "v0.3.9"
|
||||||
|
}
|
||||||
|
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 = "https://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"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user