-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlzlib.cabal
138 lines (118 loc) · 3.38 KB
/
lzlib.cabal
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
cabal-version: 1.18
name: lzlib
version: 1.0.7.4
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2019-2021 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
synopsis: lzlib bindings
description:
Lzlib bindings via [c2hs](http://hackage.haskell.org/package/c2hs).
Includes a bundled copy of lzlib
category: Codec, Compression
build-type: Simple
extra-source-files:
cbits/cbuffer.c
cbits/decoder.c
cbits/decoder.h
cbits/encoder.c
cbits/encoder.h
cbits/encoder_base.c
cbits/encoder_base.h
cbits/fast_encoder.c
cbits/fast_encoder.h
cbits/lzip.h
cbits/lzlib.h
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/vmchale/lzlib
flag cross
description: Set this flag if cross-compiling
default: False
manual: True
library
exposed-modules: Codec.Lzip
cc-options: -O3
c-sources: cbits/lzlib.c
hs-source-dirs: src
other-modules: Codec.Lzip.Raw
default-language: Haskell2010
other-extensions: DeriveDataTypeable TupleSections
include-dirs: cbits
install-includes: cbits/lzlib.h
ghc-options: -Wall
build-depends:
base >=4.7 && <5,
bytestring
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints
if !flag(cross)
build-tool-depends: c2hs:c2hs >=0.26.1
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
test-suite lzlib-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -K1K" -Wall
build-depends:
base,
lzlib,
hspec,
bytestring,
directory,
pathological-bytestrings
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
benchmark lzlib-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
hs-source-dirs: bench
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base,
lzlib,
criterion,
bytestring,
temporary,
filepath
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
benchmark lzlib-mem
type: exitcode-stdio-1.0
main-is: Mem.hs
hs-source-dirs: mem
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base,
lzlib,
filepath,
temporary,
bytestring
if impl(ghc >=8.0)
ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates
if impl(ghc >=8.10)
ghc-options: -Wunused-packages