]> gitweb @ CieloNegro.org - wavpack.git/blob - wavpack.cabal
DecorrSamples
[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         strict               == 0.3.*,
35         vector               == 0.7.*
36
37     Exposed-Modules:
38         Codec.Audio.WavPack
39         Codec.Audio.WavPack.Block
40         Codec.Audio.WavPack.Decorrelation
41         Codec.Audio.WavPack.Internal
42         Codec.Audio.WavPack.Metadata
43
44     GHC-Options:
45         -Wall
46
47 Executable hs-wvinfo
48     if flag(build-examples)
49        Buildable: True
50    else
51        Buildable: False
52
53    HS-Source-Dirs:
54         ., examples
55
56    Main-Is: WvInfo.hs
57
58    GHC-Options:
59         -Wall