-
Notifications
You must be signed in to change notification settings - Fork 1
/
match-client.asd
62 lines (56 loc) · 1.59 KB
/
match-client.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
;;;; match-client.asd
(asdf:defsystem #:match-client
:description "Common Lisp client for https://github.com/pavlovai/match"
:author "Timofei Shatrov <timofei.shatrov@gmail.com>"
:license "MIT"
:depends-on (#:dexador
#:drakma
#:alexandria
#:jsown
#:cl-store
#:lparallel
#:cl-ppcre
#:cl-graphicsmagick
)
:serial t
:components ((:file "package")
(:file "image")
(:file "tag")
(:file "cache")
(:file "match-client")
(:file "viewer")
))
(asdf:defsystem #:match-client/twigaten
:description "Twigaten search addon"
:author "Timofei Shatrov <timofei.shatrov@gmail.com>"
:license "MIT"
:depends-on (#:match-client
#:cxml
#:closure-html
#:css-selectors
#:xpath
)
:serial t
:components ((:file "twigaten"))
)
(asdf:defsystem #:match-client/saucenao
:description "Saucenao search addon"
:author "Timofei Shatrov <timofei.shatrov@gmail.com>"
:license "MIT"
:depends-on (#:match-client
#:cxml
#:closure-html
#:css-selectors
#:parse-float
)
:serial t
:components ((:file "saucenao"))
)
(asdf:defsystem #:match-client/all
:description "All match-client addons"
:author "Timofei Shatrov <timofei.shatrov@gmail.com>"
:license "MIT"
:depends-on (#:match-client/twigaten
#:match-client/saucenao
)
)