]> gitweb @ CieloNegro.org - EsounD.git/blob - EsounD.cabal
c24489f50e13759e81cde4bbd69bf90d5bfd47b9
[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.2
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 Bug-Reports: http://static.cielonegro.org/ditz/EsounD/
13 Category: Sound
14 Tested-With: GHC == 7.0.1
15 Cabal-Version: >= 1.6
16 Build-Type: Simple
17 Extra-Source-Files:
18     COPYING
19
20 Source-Repository head
21     Type: git
22     Location: git://git.cielonegro.org/EsounD.git
23
24 Flag build-examples
25     Description: Build example programs.
26     Default: False
27
28 Library
29     Build-Depends:
30         base                      == 4.*,
31         base-unicode-symbols      == 0.2.*,
32         bindings-EsounD           == 0.1.*,
33         monad-control             == 0.2.*,
34         network                   == 2.3.*,
35         regions                   == 0.9.*,
36         safer-file-handles        == 0.10.*,
37         storablevector            == 0.2.*,
38         transformers              == 0.2.*,
39         unix                      == 2.4.*
40
41     Exposed-Modules:
42         Sound.EsounD
43         Sound.EsounD.Controller
44         Sound.EsounD.Filter
45         Sound.EsounD.Monitor
46         Sound.EsounD.Player
47         Sound.EsounD.Recorder
48         Sound.EsounD.Streams
49         Sound.EsounD.Types
50
51     Other-Modules:
52         Sound.EsounD.Internals
53
54     GHC-Options:
55         -Wall
56
57 Executable hs-esd-player-example
58    if flag(build-examples)
59        Buildable: True
60    else
61        Buildable: False
62
63    HS-Source-Dirs:
64         ., examples
65
66    Main-Is: EsdPlayerExample.hs
67
68    GHC-Options:
69         -Wall