File: zlib-enum.cabal

package info (click to toggle)
haskell-zlib-enum 0.2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 68 kB
  • sloc: haskell: 286; makefile: 2
file content (54 lines) | stat: -rw-r--r-- 2,108 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name:           zlib-enum
version:        0.2.3.1
license:        MIT
license-file:   LICENSE
author:         Paulo Tanimoto <ptanimoto@gmail.com>
maintainer:     Malte Sommerkorn <malte.sommerkorn@googlemail.com>
synopsis:       Enumerator interface for zlib compression
description:    zlib-enum is a stop-gap package to provide enumeratees for
                zlib compression/decompression.
category:       Codec, Compression, Enumerator
stability:      Experimental
cabal-version:  >= 1.6
build-type:     Simple
homepage:       http://github.com/maltem/zlib-enum

-------------------------------------------------------------------------------
flag test
  description: Build the test executable.
  default: False

-------------------------------------------------------------------------------
library
    if flag(test)
         Buildable: False
    build-depends: base                  >= 4   && < 5
                 , bytestring            >= 0.9 && < 0.11
                 , transformers          >= 0.2 && < 0.5
                 , enumerator            == 0.4.*
                 , zlib-bindings         == 0.1.*
    exposed-modules: Codec.Zlib.Enum
    ghc-options:     -Wall

-------------------------------------------------------------------------------
executable zlib-enum-test
    main-is: test.hs
    if flag(test)
        Buildable: True
        build-depends:
              base                       >= 4.0      &&   < 5.0
            , bytestring                 >= 0.9      &&   < 0.11
            , transformers               >= 0.2      &&   < 0.5
            , enumerator                 >= 0.4      &&   < 0.5
            , zlib-bindings              >= 0.1
            , test-framework             >= 0.6      &&   < 0.7
            , test-framework-quickcheck2 >= 0.2.12.1 &&   < 0.3.0
            , QuickCheck                 >= 2.4      &&   < 2.5
    else
        Buildable: False
    ghc-options:     -Wall

-------------------------------------------------------------------------------
source-repository head
  type:     git
  location: git://github.com/maltem/zlib-enum.git