binary-bits/binary-bits.cabal

45 lines
1.3 KiB
Plaintext
Raw Normal View History

-- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
name: binary-bits
version: 0.1
synopsis: Bit parsing on top of binary.
description: Bit parsing on top of binary. Provides functions to
2011-10-21 01:00:12 +04:00
read bits as 8/16/32/64 words.
license: BSD3
license-file: LICENSE
author: Lennart Kolmodin <kolmodin@gentoo.org>
maintainer: Lennart Kolmodin <kolmodin@gentoo.org>
-- copyright:
category: Data
build-type: Simple
-- Extra files to be distributed with the package, such as examples or
-- a README.
-- extra-source-files:
-- Constraint on the version of Cabal needed to build this package.
2011-06-01 10:05:39 +04:00
cabal-version: >=1.10
library
build-depends: base==4.*, binary, bytestring
2011-06-04 01:35:06 +04:00
exposed-modules: Data.Binary.Bits ,
Data.Binary.Bits.Put ,
Data.Binary.Bits.Get
default-language: Haskell98
-- other-modules:
-- build-tools:
test-suite qc
type: exitcode-stdio-1.0
main-is: BitsQC.hs
default-language: Haskell98
2010-08-26 23:56:27 +04:00
build-depends: binary-bits, binary,
base==4.*, haskell98, bytestring,
QuickCheck>=2, random,
test-framework,
test-framework-quickcheck2
2010-08-27 17:06:54 +04:00
ghc-options: -fhpc