]> gitweb @ CieloNegro.org - wavpack.git/blob - wavpack.cabal
No, getWordsLossless is still incomplete...
[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         strict               == 0.3.*,
41         vector               == 0.7.*
42
43     Exposed-Modules:
44         Codec.Audio.WavPack
45         Codec.Audio.WavPack.Block
46         Codec.Audio.WavPack.Decorrelation
47         Codec.Audio.WavPack.Entropy
48         Codec.Audio.WavPack.Internal
49         Codec.Audio.WavPack.Metadata
50         Codec.Audio.WavPack.Words
51         Codec.Audio.WavPack.Unpack
52
53     GHC-Options:
54         -Wall
55
56 Executable hs-wvinfo
57     if flag(build-examples)
58        Buildable: True
59    else
60        Buildable: False
61
62    HS-Source-Dirs:
63         ., examples
64
65    Main-Is: WvInfo.hs
66
67    GHC-Options:
68         -Wall