cabal-version: 1.18 name: lzo version: 0.1.1.0 x-revision: 1 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 source-repository head type: darcs location: https://hub.darcs.net/vmchale/sak subdir: lzo 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 >=0.8.3.0 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