shake-bindist-0.1.0.0: shake-bindist.cabal
cabal-version: 2.0
name: shake-bindist
version: 0.1.0.0
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2020 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
synopsis: Rules for binary distributions
description: Pack files into a binary distribution
category: Shake, Compression, Archive
build-type: Simple
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: darcs
location: https://hub.darcs.net/vmchale/shake-bindist
flag development
description: Enable `-Werror`
default: False
manual: True
flag pure
description: Use tar library
library
exposed-modules: Development.Shake.BinDist
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.3 && <5,
shake -any,
lzlib >=0.3.2.0,
zstd -any,
bytestring -any,
archive-sig >=0.2.0.0,
bz2,
zlib
if flag(pure)
build-depends: archive-tar >=0.2.0.0
mixins: archive-tar (Archive.Tar as Archive)
else
build-depends: archive-libarchive >=0.2.0.0
mixins: archive-libarchive (Archive.FFI as Archive)
if flag(development)
ghc-options: -Werror
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