-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcl-patterns.asd
145 lines (137 loc) · 4.95 KB
/
cl-patterns.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
;;;; cl-patterns.asd - the cl-patterns ASDF system definitions.
(asdf:defsystem #:cl-patterns
:name "cl-patterns"
:version "0.7"
:description "Pattern library for algorithmic music composition and performance in Common Lisp"
:license "MIT"
:author "modula t."
:mailto "modula-t at pm dot me"
:homepage "https://w.struct.ws/cl-patterns/"
:bug-tracker "https://github.com/defaultxr/cl-patterns/issues"
:source-control (:git "[email protected]:defaultxr/cl-patterns.git")
:depends-on (#:alexandria
#:mutility
#:mutility/loopy
#:bordeaux-threads
#:closer-mop
#:named-readtables
#:local-time)
:pathname "src/"
:serial t
:components ((:file "package")
(:file "utility")
;; extensions/swank.lisp or extensions/slynk.lisp conditionally loaded at the end of utility.lisp
(:file "conversions")
(:file "scales")
(:file "event")
(:module patterns
:components ((:file "patterns")
(:file "batch")
(:file "pdef")
(:file "pmeta")
(:file "bjorklund")
(:file "cycles")
(:file "track")
(:file "export")))
(:file "eseq")
(:file "backend")
(:file "render")
(:file "clock")
;; implementations don't currently push a symbol to *features* for extensible sequences.
;; the following line tests for the sequence package, which should only be available when extensible-sequence functionality is available.
#+#.(cl:if (cl:find-package "SEQUENCE") '(:and) '(:or))
(:file "extensions/sequence"))
:in-order-to ((test-op (test-op "cl-patterns/tests"))))
(asdf:defsystem #:cl-patterns/generic-cl
:name "cl-patterns/generic-cl"
:description "cl-patterns with additional methods for generic-cl"
:author "modula t."
:license "MIT"
:version "0.7"
:depends-on (#:cl-patterns
#:generic-cl)
:serial t
:components ((:file "src/extensions/generic-cl")))
(asdf:defsystem #:cl-patterns/debug
:name "cl-patterns/debug"
:description "cl-patterns with debug backend"
:author "modula t."
:license "MIT"
:version "0.7"
:depends-on (#:cl-patterns)
:serial t
:components ((:file "src/backends/debug")))
(asdf:defsystem #:cl-patterns/supercollider
:name "cl-patterns/supercollider"
:description "cl-patterns with SuperCollider/cl-collider backend"
:author "modula t."
:license "MIT"
:version "0.7"
:depends-on (#:cl-patterns
#:cl-collider)
:serial t
:components ((:file "src/backends/supercollider")
(:file "src/formats/supercollider-score")))
(asdf:defsystem #:cl-patterns/incudine
:name "cl-patterns/incudine"
:description "cl-patterns with Incudine backend"
:author "modula t."
:license "MIT"
:version "0.7"
:depends-on (#:cl-patterns
#:incudine)
:serial t
:components ((:file "src/backends/incudine")))
(asdf:defsystem #:cl-patterns/alsa-midi
:name "cl-patterns/alsa-midi"
:description "cl-patterns with ALSA MIDI backend"
:author "modula t."
:license "MIT"
:version "0.7"
:depends-on (#:cl-patterns
#:cl-alsaseq)
:serial t
:components ((:file "src/backends/alsa-midi")))
(asdf:defsystem #:cl-patterns/midifile
:name "cl-patterns/midifile"
:description "cl-patterns with MIDI file functionality"
:author "modula t."
:license "MIT"
:version "0.7"
:depends-on (#:cl-patterns
#:midi)
:serial t
:components ((:file "src/formats/midifile")))
(asdf:defsystem #:cl-patterns/tests
:name "cl-patterns tests"
:description "FiveAM-based test suite for cl-patterns"
:author "modula t."
:license "MIT"
:depends-on (#:cl-patterns/debug
#:fiveam
#:mutility/test-helpers
#:cl-ppcre)
:pathname "t/"
:serial t
:components ((:file "test")
(:file "utility")
(:file "conversions")
(:file "event")
(:module patterns
:components ((:file "patterns")
(:file "batch")
(:file "pdef")
(:file "pmeta")
(:file "bjorklund")
(:file "cycles")
(:file "track")))
;; FIX: add formats/ tests
(:file "eseq")
;; (:file "backend")
(:file "render")
(:file "clock")
(:file "doc"))
:perform (test-op (op c)
(uiop:symbol-call :fiveam :run!
(uiop:find-symbol* '#:cl-patterns-tests
:cl-patterns/tests))))