]> gitweb @ CieloNegro.org - wavpack.git/blob - wavpack.cabal
still working on getWordsLossless
[wavpack.git] / wavpack.cabal
1 Name: wavpack
2 Synopsis: A Haskell implementation of the WavPack audio compression codec
3 Description:
4
5         A Haskell implementation of the WavPack audio compression
6         codec: <http://www.wavpack.com/>
7
8         This implementation is currently based on wavpack-4.50.1.
9
10 Version: 0.1
11 License: PublicDomain
12 License-File: COPYING
13 Author: PHO <pho at cielonegro dot org>
14 Maintainer: PHO <pho at cielonegro dot org>
15 Stability: experimental
16 Homepage: http://cielonegro.org/WavPack.html
17 Category: Codec, Sound
18 Tested-With: GHC == 7.0.1
19 Cabal-Version: >= 1.6
20 Build-Type: Simple
21 Extra-Source-Files:
22     COPYING
23
24 Source-Repository head
25     Type: git
26     Location: git://git.cielonegro.org/wavpack.git
27
28 Flag build-examples
29     Description: Build example programs.
30     Default: False
31
32 Library
33     Build-Depends:
34         base                 == 4.*,
35         base-unicode-symbols == 0.2.*,
36         binary               == 0.5.*,
37         binary-strict        == 0.4.*,
38         bitstream            == 0.2.*,
39         bytestring           == 0.9.*,
40         mtl                  == 2.0.*,
41         strict               == 0.3.*,
42         vector               == 0.7.*
43
44     Exposed-Modules:
45         Codec.Audio.WavPack
46         Codec.Audio.WavPack.Block
47         Codec.Audio.WavPack.Decorrelation
48         Codec.Audio.WavPack.Entropy
49         Codec.Audio.WavPack.Internal
50         Codec.Audio.WavPack.Metadata
51         Codec.Audio.WavPack.Words
52         Codec.Audio.WavPack.Unpack
53
54     GHC-Options:
55         -Wall
56
57 Executable hs-wvinfo
58     if flag(build-examples)
59        Buildable: True
60    else
61        Buildable: False
62
63    HS-Source-Dirs:
64         ., examples
65
66    Main-Is: WvInfo.hs
67
68    GHC-Options:
69         -Wall