-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcl-welearn.asd
More file actions
79 lines (75 loc) · 2.98 KB
/
cl-welearn.asd
File metadata and controls
79 lines (75 loc) · 2.98 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
(defsystem "cl-welearn/deploy"
:long-name "cl-finish-welearn"
:author "Evan Gao"
:maintainer "Evan Gao"
:mailto "evan@brmb.me"
:license "BSD 2-Clause"
:homepage "https://github.com/notch1p/cl-welearn"
:source-control "https://github.com/notch1p/cl-welearn.git"
:defsystem-depends-on (:deploy)
:depends-on ("bordeaux-threads"
"cl-dotenv"
"str"
"dexador"
"cl-cookie"
"clingon"
"com.inuoe.jzon"
"cl-ppcre"
"quri"
"alexandria"
"cl-ansi-text"
"cl-interpol"
"cl-ansi-term"
"cl-tqdm")
:serial t
:components ((:module "src"
:serial t
:components
((:file "pprint")
(:file "auth")
(:file "afk")
(:file "learn")
(:file "main"))))
:description "it finishes homework for you"
:build-operation "deploy-op"
:build-pathname "finishit"
:entry-point "cl-welearn:main")
(defsystem "cl-welearn"
:long-name "cl-finish-welearn"
:author "Evan Gao"
:maintainer "Evan Gao"
:mailto "evan@brmb.me"
:license "BSD 2-Clause"
:homepage "https://github.com/notch1p/cl-welearn"
:source-control "https://github.com/notch1p/cl-welearn.git"
:depends-on ("bordeaux-threads"
"cl-dotenv"
"str"
"dexador"
"cl-cookie"
"clingon"
"com.inuoe.jzon"
"cl-ppcre"
"quri"
"alexandria"
"cl-ansi-text"
"cl-interpol"
"cl-ansi-term"
"cl-tqdm")
:serial t
:components ((:module "src"
:serial t
:components
((:file "pprint")
(:file "auth")
(:file "afk")
(:file "learn")
(:file "main"))))
:description "it finishes homework for you"
:build-operation "program-op"
:build-pathname "bin/finishit"
:entry-point "cl-welearn:main")
(deploy:define-hook (:deploy asdf) (directory)
(declare (ignorable directory))
#+asdf (asdf:clear-source-registry)
#+asdf (defun asdf:upgrade-asdf () nil))