self-extract-0.2.0.0: A Haskell library to make self-extracting executables

MaintainerBrandon Chinn <brandon@leapyear.io>
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Codec.SelfExtract.Tar

Description

Defines utilities for creating/extracting TAR archives.

These functions shell out to the tar process because Haskell packages that implement Tar would need some C header files, which we don't want to require on the user end.

Synopsis

Documentation

tar :: Path b0 Dir -> Path b1 File -> IO () Source #

Zip the given directory into the given archive.

untar :: Path b0 File -> Path b1 Dir -> IO () Source #

Extract the given archive to the given directory.