]> gitweb @ CieloNegro.org - wavpack.git/blob - wavpack.cabal
a module for metadata sub-blocks
[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         Codec.Audio.WavPack.Metadata
39
40     GHC-Options:
41         -Wall
42
43 Executable hs-wvinfo
44     if flag(build-examples)
45        Buildable: True
46    else
47        Buildable: False
48
49    HS-Source-Dirs:
50         ., examples
51
52    Main-Is: WvInfo.hs
53
54    GHC-Options:
55         -Wall