]> gitweb @ CieloNegro.org - wavpack.git/blob - wavpack.cabal
WvInfo.hs
[wavpack.git] / wavpack.cabal
1 Name: wavpack
2 Synopsis: A Haskell implementation of the WavPack audio compression codec
3 Description:
4         A Haskell implementation of the WavPack audio compression codec: <http://www.wavpack.com/>
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/WavPack.html
12 Category: Codec, Sound
13 Tested-With: GHC == 7.0.1
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/wavpack.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         binary               == 0.5.*,
32         binary-strict        == 0.4.*,
33         bytestring           == 0.9.*
34
35     Exposed-Modules:
36         Codec.Audio.WavPack
37         Codec.Audio.WavPack.Block
38
39     GHC-Options:
40         -Wall
41
42 Executable hs-wvinfo
43     if flag(build-examples)
44        Buildable: True
45    else
46        Buildable: False
47
48    HS-Source-Dirs:
49         ., examples
50
51    Main-Is: WvInfo.hs
52
53    GHC-Options:
54         -Wall