forked from Shinmera/CLSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclss.asd
More file actions
18 lines (18 loc) · 667 Bytes
/
clss.asd
File metadata and controls
18 lines (18 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(asdf:defsystem clss
:name "CSS Like Simple Selectors"
:version "0.3.1"
:license "zlib"
:author "Yukari Hafner <shinmera@tymoon.eu>"
:maintainer "Yukari Hafner <shinmera@tymoon.eu>"
:description "A DOM tree searching engine based on CSS selectors."
:homepage "https://shinmera.github.io/CLSS/"
:bug-tracker "https://github.com/Shinmera/CLSS/issues"
:source-control (:git "https://github.com/Shinmera/CLSS.git")
:serial T
:components ((:file "package")
(:file "selector")
(:file "parser")
(:file "engine")
(:file "pseudo-selectors"))
:depends-on (:array-utils
:plump))