]> gitweb @ CieloNegro.org - wavpack.git/blob - wavpack.cabal
Binary instance for BlockFlags
[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 Library
24     Build-Depends:
25         base                 == 4.*,
26         base-unicode-symbols == 0.2.*,
27         binary               == 0.5.*,
28         binary-strict        == 0.4.*,
29         bytestring           == 0.9.*
30
31     Exposed-Modules:
32         Codec.Audio.WavPack
33         Codec.Audio.WavPack.Types
34
35     GHC-Options:
36         -Wall