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