packages feed

bmp-1.2.0.1: bmp.cabal

Name:                bmp
Version:             1.2.0.1
License:             MIT
License-file:        LICENSE
Author:              Ben Lippmeier
Maintainer:          benl@ouroborus.net
Build-Type:          Simple
Cabal-Version:       >=1.6
Stability:           stable
Category:            Codec
Homepage:            http://code.ouroborus.net/bmp
Bug-reports:         bmp@ouroborus.net
Description:
	Read and write uncompressed BMP image files. 100% robust Haskell implementation.

Synopsis:
        Read and write uncompressed BMP image files.

Tested-with: GHC == 7.2

Library
  Build-Depends: 
        base                 >= 4       && < 5,
        bytestring           >= 0.9.1.5 && < 1.0.0.0,
        binary               >= 0.5.0.2 && < 0.6.0.0

  ghc-options:
        -Wall -fno-warn-missing-signatures

  Exposed-modules:
        Codec.BMP

  Other-modules:
        Codec.BMP.Base
        Codec.BMP.Compression
        Codec.BMP.BitmapInfo
        Codec.BMP.BitmapInfoV3
        Codec.BMP.BitmapInfoV4
        Codec.BMP.BitmapInfoV5
        Codec.BMP.CIEXYZ
        Codec.BMP.Error
        Codec.BMP.FileHeader
        Codec.BMP.Pack
        Codec.BMP.Unpack