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