-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
redist.asd
52 lines (50 loc) · 1.66 KB
/
redist.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
(asdf:defsystem redist
:version "2.0.0"
:license "zlib"
:author "Yukari Hafner <shinmera@tymoon.eu>"
:maintainer "Yukari Hafner <shinmera@tymoon.eu>"
:description "An extensive system to manage and create quicklisp distributions."
:homepage "https://Shirakumo.github.io/redist/"
:bug-tracker "https://github.com/Shirakumo/redist/issues"
:source-control (:git "https://github.com/Shirakumo/redist.git")
:in-order-to ((asdf:build-op (asdf:build-op :redist/standalone)))
:serial T
:components ((:file "package")
(:file "toolkit")
(:file "asdf")
(:file "storage")
(:file "dist")
(:file "project")
(:file "release")
(:file "plaintext")
(:file "sources")
(:file "ql-support")
(:file "compile")
(:file "replicate")
(:file "test")
(:file "documentation"))
:depends-on (:ironclad
:closer-mop
:shasht
:babel
:archive
:salza2
:eclector
:simple-inferiors
:pathname-utils
:filesystem-utils
:uiop
:clip
:form-fiddle
:documentation-utils
:lparallel
:cl-ppcre))
(asdf:defsystem redist/sqlite
:components ((:file "sqlite"))
:depends-on (:redist :sqlite))
(asdf:defsystem redist/standalone
:build-operation "program-op"
:build-pathname "redist"
:entry-point "org.shirakumo.redist::main"
:components ((:file "main"))
:depends-on (:uiop :redist :redist/sqlite))