packages feed

zmidi-core-0.2.1: zmidi-core.cabal

name:             zmidi-core
version:          0.2.1
license:          BSD3
license-file:     LICENSE
copyright:        Stephen Tetley <stephen.tetley@gmail.com>
maintainer:       Stephen Tetley <stephen.tetley@gmail.com>
homepage:         http://code.google.com/p/copperbox/
category:         Music
synopsis:         Read and write MIDI files.
description:
  Minimalist library to read and write MIDI files, with 
  dependencies only on ByteString and Data.Binary.
  .
  Changelog:
  .
  v0.2.0 to v0.2.1:
  . 
  * Added Show class constraints to various type signatures to 
    accommodate changes to Num superclass hierarchy in GHC 7.4.
    Thanks to Remy Moueza for the patches.
  . 
  v0.1.0 to v0.2.0:
  .
  * Added a top-level /shim/ module to import all the exposed
    modules. Added a version number module
  .
  .
build-type:         Simple
stability:          unstable
cabal-version:      >= 1.2

extra-source-files:
  CHANGES,
  demo/MidiPrint.hs,
  demo/MidiCopy.hs


library
  hs-source-dirs:     src
  build-depends:      base < 5,
                      bytestring,
                      binary >= 0.5
  
  exposed-modules:
    ZMidi.Core,
    ZMidi.Core.Datatypes,
    ZMidi.Core.Pretty,
    ZMidi.Core.ReadFile,
    ZMidi.Core.VersionNumber,
    ZMidi.Core.WriteFile

  other-modules:
    ZMidi.Core.Internal.ParserMonad,
    ZMidi.Core.Internal.SimpleFormat
      
  extensions:
    

  ghc-options:
  
  includes: