-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
plump.asd
21 lines (21 loc) · 805 Bytes
/
plump.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(asdf:defsystem plump
:version "2.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "An XML / XHTML / HTML parser that aims to be as lenient as possible."
:homepage "https://Shinmera.github.io/plump/"
:bug-tracker "https://github.com/Shinmera/plump/issues"
:source-control (:git "https://github.com/Shinmera/plump.git")
:serial T
:components ((:file "package")
(:file "entities")
(:file "lexer")
(:file "tag-dispatcher")
(:file "dom")
(:file "parser")
(:file "processing")
(:file "special-tags")
(:file "documentation"))
:depends-on (:array-utils
:documentation-utils))