-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Shake File Pack Rule -- -- Shake rule for tar-ing and compressing files with bzip2. Uses bz2 C -- library on the system. @package shake-pack @version 0.2.0 -- | Pack given files into the target with tar and bzip. Uses bz2 C library -- on the system. -- --
--   main :: IO ()
--   main = shakeArgs shakeOptions $ do
--       want ["pack.tar.bz2"]
--       "pack.tar.bz2" *> pack ["ex.txt", "ex2.txt"]
--   
module Development.Shake.Pack -- | Pack files into a tar then compress with bzip. For static files, be -- sure to use getDirectoryFiles to track file changes. pack :: [FilePath] -> FilePath -> Action ()