shake-bindist-1.0.0.0: Rules for binary distributions
Safe HaskellNone
LanguageHaskell2010

Development.Shake.BinDist

Contents

Synopsis

Rules

tarLzip Source #

Arguments

:: [FilePath]

Files to pack up

-> FilePattern

Resultant tarball

-> Rules () 

The lzip format is suitable for archiving.

Note that tarLzip doesn't stream in memory; the others do.

tarZstd Source #

Arguments

:: [FilePath]

Files to pack up

-> FilePattern

Resultant tarball

-> Rules () 

tarBz2 Source #

Arguments

:: [FilePath]

Files to pack up

-> FilePattern

Resultant tarball

-> Rules () 

tarGz Source #

Arguments

:: [FilePath]

Files to pack up

-> FilePattern

Resultant tarball

-> Rules () 

Actions

tarLzipA Source #

Arguments

:: [FilePath]

Files to pack up

-> FilePath

File name of resultant tarball

-> Action () 

tarZstdA Source #

Arguments

:: [FilePath]

Files to pack up

-> FilePath

File name of resultant tarball

-> Action () 

tarBz2A Source #

Arguments

:: [FilePath]

Files to pack up

-> FilePath

File name of resultant tarball

-> Action () 

tarGzA Source #

Arguments

:: [FilePath]

Files to pack up

-> FilePath

File name of resultant tarball

-> Action ()