X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=wavpack.git;a=blobdiff_plain;f=wavpack.cabal;h=57927a0f357ce4005214bf94bedc116edaf2872d;hp=239e4e9dc998ad2078df084a1ff12929dac5f211;hb=e7d7bed418f63de393b316b2b4246f44752b5743;hpb=e1c40f16ebdddf304dd7b96f0d160e512aeaf93f diff --git a/wavpack.cabal b/wavpack.cabal index 239e4e9..57927a0 100644 --- a/wavpack.cabal +++ b/wavpack.cabal @@ -1,7 +1,12 @@ Name: wavpack Synopsis: A Haskell implementation of the WavPack audio compression codec Description: - A Haskell implementation of the WavPack audio compression codec: + + A Haskell implementation of the WavPack audio compression + codec: + + This implementation is currently based on wavpack-4.50.1. + Version: 0.1 License: PublicDomain License-File: COPYING @@ -20,16 +25,41 @@ Source-Repository head Type: git Location: git://git.cielonegro.org/wavpack.git +Flag build-examples + Description: Build example programs. + Default: False + Library Build-Depends: base == 4.*, base-unicode-symbols == 0.2.*, binary == 0.5.*, - bytestring == 0.9.* + binary-strict == 0.4.*, + bytestring == 0.9.*, + strict == 0.3.*, + vector == 0.7.* Exposed-Modules: Codec.Audio.WavPack - Codec.Audio.WavPack.Types + Codec.Audio.WavPack.BitString + Codec.Audio.WavPack.Block + Codec.Audio.WavPack.Decorrelation + Codec.Audio.WavPack.Internal + Codec.Audio.WavPack.Metadata GHC-Options: -Wall + +Executable hs-wvinfo + if flag(build-examples) + Buildable: True + else + Buildable: False + + HS-Source-Dirs: + ., examples + + Main-Is: WvInfo.hs + + GHC-Options: + -Wall