packages feed

sndfile-enumerators-0.8.0: sndfile-enumerators.cabal

Name:		sndfile-enumerators
Version:        0.8.0
Cabal-Version:  >= 1.2
Description:	encode and decode soundfiles using Iteratees.
                Audio files may be read or written, with classes and 
                data structures to facilitate conversion between different
                formats.  Currently only wave format is supported.
License:	BSD3
License-file:	LICENSE
Author:		John W. Lato, jwlato@gmail.com
Maintainer:	John W. Lato, jwlato@gmail.com
homepage:       http://jwlato.webfactional.com/haskell/sndfile-enumerators
Stability:	experimental
synopsis:       Audio file reading/writing
category:       Codec, Sound
build-type:     Simple
cabal-version:  >= 1.2
tested-with:    GHC == 6.12.3
extra-source-files:
  LICENSE
  examples/wave_reader.hs
  examples/wave_writer.hs
  examples/writer2.hs

flag splitBase
  description: Choose the new split-up base package.

Library
 hs-Source-Dirs:
   src
 ghc-options:
   -Wall
   -fexcess-precision
 build-depends:
   base                      >= 3   && < 5,
   binary                    >= 0.5 && < 0.6,
   containers                >= 0.2 && < 0.5,
   transformers              >= 0.2 && < 0.3,
   iteratee                  >= 0.4 && < 0.9,
   bytestring                >= 0.9.1 && < 0.10,
   word24                    >= 0.1 && < 0.2,
   mutable-iter              >= 0.1 && < 0.7,
   MonadCatchIO-transformers >= 0.2 && < 0.3
 exposed-modules:
   Sound.Iteratee
   Sound.Iteratee.Base
   Sound.Iteratee.Codecs
   Sound.Iteratee.Codecs.Wave
   Sound.Iteratee.Codecs.Raw
   Sound.Iteratee.Writer
 other-modules:
   Sound.Iteratee.Codecs.WaveWriter
   Sound.Iteratee.Codecs.Common