From 6ed477ac89295fe36b1a7a16236d0044eccc94c7 Mon Sep 17 00:00:00 2001 From: Wouter Scherphof Date: Fri, 10 Jan 2014 20:58:19 +0100 Subject: [PATCH] Rockspec for new version --- htmlparser-0.3.2-1.rockspec | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 htmlparser-0.3.2-1.rockspec diff --git a/htmlparser-0.3.2-1.rockspec b/htmlparser-0.3.2-1.rockspec new file mode 100644 index 0000000..e6563ad --- /dev/null +++ b/htmlparser-0.3.2-1.rockspec @@ -0,0 +1,28 @@ +package = "htmlparser" +version = "0.3.2-1" +source = { + url = "git://github.com/wscherphof/lua-htmlparser.git", + branch = "v0.3.2" +} +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://wscherphof.github.io/lua-htmlparser/", + license = "LGPL+" +} +dependencies = { + "lua >= 5.2", + "set >= 0.2", + "lunitx >= 0.6" +} +build = { + type = "builtin", + copy_directories = {"doc", "tst"}, + modules = { + htmlparser = "src/htmlparser.lua", + ["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua", + ["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua" + } +}