lzo-0.1.0.0: lzo.cabal
cabal-version: 1.18
name: lzo
version: 0.1.0.0
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2020 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
synopsis: minilzo bundled for Haskell
description:
A small library wrapping minilzo allowing lzop compression in Haskell.
category: Codec,Compression
build-type: Simple
extra-source-files:
cbits/minilzo.h
cbits/lzodefs.h
cbits/lzoconf.h
extra-doc-files:
README.md
CHANGELOG.md
library
exposed-modules: Codec.Compression.Lzo
build-tool-depends: hsc2hs:hsc2hs -any
c-sources: cbits/minilzo.c
hs-source-dirs: src
other-modules:
Codec.Compression.Lzo.Block
Codec.Compression.Lzo.File
default-language: Haskell2010
include-dirs: cbits
ghc-options: -Wall -fobject-code
build-depends:
base >=4.9 && <5,
bytestring -any,
digest-pure -any,
binary -any
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.2)
ghc-options: -Wcpp-undef
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
test-suite lz4-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
base -any,
lzo -any,
tasty -any,
tasty-hunit -any,
bytestring -any
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.2)
ghc-options: -Wcpp-undef
if impl(ghc >=8.10)
ghc-options: -Wunused-packages