]> gitweb @ CieloNegro.org - EsounD.git/blob - EsounD.cabal
Recorder
[EsounD.git] / EsounD.cabal
1 Name: EsounD
2 Synopsis: Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)
3 Description:
4         Type-safe bindings to EsounD: <http://www.tux.org/~ricdude/EsounD.html>
5 Version: 0.1
6 License: PublicDomain
7 License-File: COPYING
8 Author: PHO <pho at cielonegro dot org>
9 Maintainer: PHO <pho at cielonegro dot org>
10 Stability: experimental
11 Homepage: http://cielonegro.org/EsounD.html
12 Category: Sound
13 Tested-With: GHC == 6.12.3
14 Cabal-Version: >= 1.6
15 Build-Type: Simple
16 Extra-Source-Files:
17     COPYING
18
19 Source-Repository head
20     Type: git
21     Location: git://git.cielonegro.org/EsounD.git
22
23 Flag build-examples
24     Description: Build example programs.
25     Default: False
26
27 Library
28     Build-Depends:
29         base                      == 4.*,
30         base-unicode-symbols      == 0.2.*,
31         bindings-EsounD           == 0.1.*,
32         monad-peel                == 0.1.*,
33         network                   == 2.3.*,
34         regions                   == 0.8.*,
35         safer-file-handles        == 0.9.*,
36         storablevector            == 0.2.*,
37         transformers              == 0.2.*,
38         unix                      == 2.4.*
39
40     Exposed-Modules:
41         Sound.EsounD
42         Sound.EsounD.Monitor
43         Sound.EsounD.Player
44         Sound.EsounD.Recorder
45         Sound.EsounD.Streams
46         Sound.EsounD.Types
47
48     Other-Modules:
49         Sound.EsounD.Internals
50
51     GHC-Options:
52         -Wall
53
54 Executable hs-esd-player-example
55    if flag(build-examples)
56        Buildable: True
57    else
58        Buildable: False
59
60    HS-Source-Dirs:
61         .,
62         examples
63
64    Main-Is: EsdPlayerExample.hs
65
66    GHC-Options:
67         -Wall