cabal-version: 2.0 name: hstar version: 0.1.0.5 x-revision: 2 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2019-2020 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale bug-reports: https://github.com/vmchale/archive-backpack/issues synopsis: Haskell version of tar CLI utility description: Haskell implementation of the tar utility, backed by [libarchive](http://libarchive.org/). category: Codec, Tar, Archive build-type: Simple data-files: man/hstar.1 extra-source-files: CHANGELOG.md README.md source-repository head type: git location: https://github.com/vmchale/archive-backpack subdir: hstar flag with-brotli description: Enable brotli compression support flag with-snappy description: Enable snappy support default: False executable hstar main-is: Main.hs build-tool-depends: cpphs:cpphs -any hs-source-dirs: src other-modules: Compression Compression.Type Compression.Level Compression.Lrzip Tar Paths_hstar Version Version.Foreign autogen-modules: Paths_hstar default-language: Haskell2010 ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints -Widentities -Wmissing-export-lists build-depends: base >=4.11 && <5, libarchive >=3.0.0.0, optparse-applicative -any, composition-prelude -any, bytestring -any, lzma -any, bz2 >=1.0.0.0, zlib -any, zstd -any, lz4-hs >=0.1.4.0, lzlib >=1.0.4.0, lzo >=0.1.1.0, process >=1.4.3.0, dir-traverse >=0.2.2.0 if flag(with-snappy) build-depends: snappy-lazy -any if flag(with-brotli) build-depends: brotli -any if flag(with-brotli) cpp-options: -DBROTLI if flag(with-snappy) cpp-options: -DSNAPPY if impl(ghc >=8.10) ghc-options: -Wunused-packages