-
Notifications
You must be signed in to change notification settings - Fork 1
/
live-sequencer.cabal
273 lines (250 loc) · 6.08 KB
/
live-sequencer.cabal
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
Name: live-sequencer
Version: 0.0.5.2
Author: Henning Thielemann and Johannes Waldmann
Maintainer: Henning Thielemann <[email protected]>, Johannes Waldmann <[email protected]>
Category: Sound, Music, GUI
License: GPL
License-file: LICENSE
Cabal-Version: >= 1.6
Tested-With: GHC==6.12.3
Tested-With: GHC==7.2.1, GHC==7.4.2, GHC==7.6.3
Homepage: http://www.haskell.org/haskellwiki/Live-Sequencer
Bug-Reports: http://dfa.imn.htwk-leipzig.de/bugzilla/describecomponents.cgi?product=live-sequencer
Synopsis: Live coding of MIDI music
Description:
An editor shows a textual description of music (like Haskore),
an interpreter computes and emits a stream of MIDI events,
and (that's the main point) the user can change the program on the fly.
Additionally the state of the interpreter is shown
in the form of the current reduced term
for educational and debugging purposes.
Build-Type: Simple
Data-Files:
data/example/Band.hs
data/example/BandControlled.hs
data/example/Finite.hs
data/example/Klingklong.hs
data/example/Simplesong.hs
data/example/Sweep.hs
data/example/UD.hs
data/example/CrossSum.hs
data/example/Fibonacci.hs
data/example/DeBruijn.hs
data/example/JohnsonTrotter.hs
data/example/GrayCode.hs
data/example/Pattern.hs
data/base/Bool.hs
data/base/Chord.hs
data/base/Controller.hs
data/base/Drum.hs
data/base/Enum.hs
data/base/Function.hs
data/base/Instrument.hs
data/base/Integer.hs
data/base/List.hs
data/base/ListLive.hs
data/base/List/Basic.hs
data/base/List/Advanced.hs
data/base/Maybe.hs
data/base/Midi.hs
data/base/Music.hs
data/base/Pitch.hs
data/base/Render.hs
data/base/Tuple.hs
data/prelude/Prelude.hs
Extra-Source-Files:
ChangeLog
README.md
http/enable/HTTPServer.hs
http/enable/HTTPServer/GUI.hs
http/enable/HTTPServer/Option.hs
http/disable/HTTPServer/GUI.hs
http/disable/HTTPServer/Option.hs
Source-Repository head
Type: git
Location: git://dfa.imn.htwk-leipzig.de/srv/git/seq/
Source-Repository this
Type: git
Tag: 0.0.5.2
Location: https://github.com/thielema/livesequencer
Flag gui
Description: Build the wxWidgets GUI for the sequencer
Default: True
Flag mplayer
Description: Build the remote controller to the mplayer
Default: True
Flag httpServer
Description: Enable access to modules via a web browser
Default: True
Library
Hs-Source-Dirs: data/base, data/example
GHC-Options: -Wall
Build-Depends:
-- for Render
non-negative >=0.0.6 && <0.2,
event-list >=0.0.11 && <0.2,
base >=4.2 && <5
Exposed-Modules:
Render
Bool
Chord
Controller
Drum
Enum
Function
Instrument
Integer
ListLive
Maybe
Midi
Music
Pitch
Tuple
Other-Modules:
List
List.Advanced
List.Basic
Pattern
Finite
CrossSum
DeBruijn
Fibonacci
JohnsonTrotter
GrayCode
Executable live-sequencer
Hs-Source-Dirs: src, http/disable
Main-is: Console.hs
Other-Modules:
ALSA
Event
IO
Module
Option
Option.Utility
Program
Rewrite
Rule
Step
Term
TermFocus
Time
Type
Log
Paths_live_sequencer
Other-Modules:
Lilypond
GHC-Options: -Wall -threaded
If impl(ghc>=7.0)
GHC-Options: -fwarn-unused-do-bind -fwarn-missing-import-lists
Build-Depends:
stm-split >=0.0 && <0.1,
concurrent-split >=0.0 && <0.1,
transformers >=0.2.2 && <0.6,
explicit-exception >=0.1.5 && <0.2,
parsec >=2.1 && <3.2,
pretty >=1.0 && <1.2,
midi-alsa >=0.2 && <0.3,
midi >=0.2.1 && <0.3,
alsa-seq >=0.6 && <0.7,
alsa-core >=0.5 && <0.6,
data-accessor-transformers >=0.2.1 && <0.3,
data-accessor >=0.2.1 && <0.3,
strict >=0.3.2 && <0.4,
utility-ht >=0.0.8 && <0.1,
non-empty >=0.2 && <0.4,
containers >=0.3 && <0.6,
bytestring >=0.9 && <0.11,
process >=1.0 && <1.5,
directory >=1.0 && <1.3,
filepath >=1.1 && <1.5,
base >=4.2 && <5
Executable live-sequencer-gui
If flag(gui)
Build-Depends:
wx >=0.12.1 && <0.14,
wxcore >=0.12.1 && <0.14,
stm >=2.2 && <2.5,
concurrent-split >=0.0 && <0.1,
transformers >=0.2.2 && <0.6,
explicit-exception >=0.1.5 && <0.2,
parsec >=2.1 && <3.2,
pretty >=1.0 && <1.2,
midi-alsa >=0.2 && <0.3,
midi >=0.2.1 && <0.3,
alsa-seq >=0.6 && <0.7,
alsa-core >=0.5 && <0.6,
data-accessor-transformers >=0.2.1 && <0.3,
data-accessor >=0.2.1 && <0.3,
strict >=0.3.2 && <0.4,
non-empty >=0.2 && <0.4,
utility-ht >=0.0.8 && <0.1,
containers >=0.3 && <0.6,
bytestring >=0.9 && <0.11,
process >=1.0 && <1.5,
directory >=1.0 && <1.3,
filepath >=1.1 && <1.5,
base >=4.2 && <5
Else
Buildable: False
Hs-Source-Dirs: src
Main-is: GUI.hs
Other-Modules:
ALSA
Event
IO
Exception
Module
Option
Option.Utility
Controller
ControllerBase
Program
Rewrite
Rule
Step
Term
TermFocus
Time
Type
Log
Paths_live_sequencer
Utility.Concurrent
Utility.WX
GHC-Options: -threaded -Wall
If impl(ghc>=7.0)
GHC-Options: -fwarn-tabs -fwarn-incomplete-uni-patterns
If flag(httpServer)
Hs-Source-Dirs: http/enable
Other-Modules:
HTTPServer
Build-Depends:
httpd-shed >=0.4 && <0.5,
network >=2.6 && <2.7,
network-uri >= 2.6 && <2.7,
cgi >=3001.1 && <3001.4,
html >=1.0 && <1.1
Else
Hs-Source-Dirs: http/disable
Other-Modules:
HTTPServer.Option
HTTPServer.GUI
Executable live-mplayer-control
If flag(mplayer)
Build-Depends:
midi-alsa >=0.2 && <0.3,
midi >=0.2 && <0.3,
alsa-seq >=0.6 && <0.7,
alsa-core >=0.5 && <0.6,
unix >=2.4 && <2.8,
directory >=1.0 && <1.3,
transformers >=0.2.2 && <0.6,
base >=4.2 && <5
Else
Buildable: False
Hs-Source-Dirs: src
Main-is: MPlayer.hs
Other-Modules:
Option.Utility
GHC-Options: -threaded -Wall
If impl(ghc>=7.0)
GHC-Options: -fwarn-tabs -fwarn-incomplete-uni-patterns