2016-02-21 13:21:41 +03:00
|
|
|
#!/usr/bin/env stack
|
2016-04-06 01:23:20 +03:00
|
|
|
{- stack runghc --verbosity info
|
2016-04-05 16:59:52 +03:00
|
|
|
--package base-prelude
|
|
|
|
--package directory
|
|
|
|
--package extra
|
|
|
|
--package here
|
|
|
|
--package safe
|
|
|
|
--package shake
|
|
|
|
--package time
|
2016-04-06 01:23:20 +03:00
|
|
|
--package pandoc
|
2016-04-05 16:59:52 +03:00
|
|
|
-}
|
|
|
|
{-
|
|
|
|
Usage: see below.
|
|
|
|
Shake.hs is a more powerful Makefile, providing a number of commands
|
|
|
|
for performing useful tasks. Compiling this script is suggested, so that
|
|
|
|
it runs quicker and will not be affected eg when exploring old code versions.
|
|
|
|
More about Shake: http://shakebuild.com/manual
|
|
|
|
Requires: https://www.haskell.org/downloads#stack
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
Shake notes:
|
|
|
|
notes:
|
|
|
|
unclear:
|
|
|
|
want
|
|
|
|
oracles
|
|
|
|
wishlist:
|
|
|
|
wildcards in phony rules
|
|
|
|
multiple individually accessible wildcards
|
|
|
|
just one shake import
|
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE PackageImports, QuasiQuotes #-}
|
|
|
|
|
|
|
|
import Prelude ()
|
|
|
|
import "base-prelude" BasePrelude
|
|
|
|
-- import "base" System.Console.GetOpt
|
|
|
|
import "extra" Data.List.Extra
|
|
|
|
import "here" Data.String.Here
|
|
|
|
import "safe" Safe
|
|
|
|
import "shake" Development.Shake
|
|
|
|
import "shake" Development.Shake.FilePath
|
|
|
|
import "time" Data.Time
|
|
|
|
import "directory" System.Directory as S (getDirectoryContents)
|
|
|
|
|
|
|
|
usage = [i|Usage:
|
|
|
|
./Shake.hs compile # compile this script (optional)
|
|
|
|
./Shake # show commands
|
|
|
|
./Shake --help # show options
|
|
|
|
./Shake [--color] COMMAND
|
|
|
|
|
|
|
|
Commands:
|
|
|
|
compile
|
|
|
|
manpages
|
2016-04-06 01:23:20 +03:00
|
|
|
webmanual
|
2016-04-05 16:59:52 +03:00
|
|
|
|]
|
2016-02-21 13:21:41 +03:00
|
|
|
|
|
|
|
manpages :: [String]
|
|
|
|
manpages = [
|
|
|
|
"hledger_csv.5"
|
|
|
|
,"hledger_journal.5"
|
|
|
|
,"hledger_timedot.5"
|
|
|
|
,"hledger_timelog.5"
|
|
|
|
,"hledger.1"
|
|
|
|
,"hledger-api.1"
|
|
|
|
,"hledger-ui.1"
|
|
|
|
,"hledger-web.1"
|
|
|
|
]
|
|
|
|
|
|
|
|
manpageDir :: String -> FilePath
|
|
|
|
manpageDir p
|
|
|
|
| '_' `elem` p = "hledger-lib"
|
|
|
|
| otherwise = dropExtension p
|
|
|
|
|
|
|
|
buildDir :: FilePath
|
|
|
|
buildDir = ".build"
|
|
|
|
|
2016-04-05 21:56:42 +03:00
|
|
|
pandocExe :: String
|
2016-04-06 01:23:20 +03:00
|
|
|
pandocExe = "stack exec -- pandoc" -- use the pandoc required above
|
2016-04-05 21:56:42 +03:00
|
|
|
|
|
|
|
pandocFiltersResolver :: String
|
2016-04-06 01:23:20 +03:00
|
|
|
pandocFiltersResolver = ""
|
2016-04-05 21:56:42 +03:00
|
|
|
|
2016-02-21 13:21:41 +03:00
|
|
|
main :: IO ()
|
|
|
|
main = do
|
|
|
|
|
|
|
|
pandocFilters <-
|
|
|
|
map ("tools" </>). nub . sort . map (-<.> "") . filter ("pandoc" `isPrefixOf`)
|
|
|
|
<$> S.getDirectoryContents "tools"
|
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
shakeArgs
|
|
|
|
shakeOptions{
|
|
|
|
shakeFiles=buildDir
|
|
|
|
,shakeVerbosity=Loud
|
|
|
|
-- ,shakeReport=[".shake.html"]
|
|
|
|
} $ do
|
|
|
|
|
|
|
|
want ["help"]
|
|
|
|
|
|
|
|
phony "help" $ liftIO $ putStrLn usage
|
|
|
|
|
|
|
|
phony "compile" $ need ["Shake"]
|
|
|
|
|
|
|
|
"Shake" %> \out -> do
|
|
|
|
need ["Shake.hs"]
|
|
|
|
cmd "stack ghc Shake.hs" :: Action ExitCode
|
|
|
|
putLoud "Compiled ./Shake, you can now use this instead of ./Shake.hs"
|
|
|
|
|
|
|
|
-- docs
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
-- man pages, still markdown but with man-only sections removed.
|
|
|
|
-- (We let hakyll do the html rendering since it's good
|
|
|
|
-- at applying the site style, table of contents etc.)
|
|
|
|
let manpageFilteredMds = ["site" </> p <.>".md" | p <- manpages]
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
-- man pages, converted to man nroff with web-only sections removed
|
|
|
|
let manpageNroffs = [manpageDir p </> p | p <- manpages]
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
phony "manpages" $ need $ manpageNroffs ++ manpageFilteredMds
|
2016-02-21 13:21:41 +03:00
|
|
|
|
|
|
|
manpageNroffs |%> \out -> do
|
|
|
|
let
|
|
|
|
md = out <.> "md"
|
|
|
|
tmpl = "doc/manpage.nroff"
|
|
|
|
need $ md : tmpl : pandocFilters
|
2016-04-05 21:56:42 +03:00
|
|
|
cmd pandocExe md "--to man -s --template" tmpl
|
2016-02-21 13:21:41 +03:00
|
|
|
"--filter tools/pandocRemoveHtmlBlocks"
|
|
|
|
"--filter tools/pandocRemoveHtmlInlines"
|
|
|
|
"--filter tools/pandocRemoveLinks"
|
|
|
|
"--filter tools/pandocRemoveNotes"
|
|
|
|
"--filter tools/pandocCapitalizeHeaders"
|
|
|
|
"-o" out
|
|
|
|
|
|
|
|
manpageFilteredMds |%> \out -> do
|
|
|
|
let
|
|
|
|
p = dropExtension $ takeFileName out
|
|
|
|
md = manpageDir p </> p <.> "md"
|
|
|
|
tmpl = "doc/manpage.html"
|
|
|
|
need $ md : tmpl : pandocFilters
|
2016-04-06 01:23:20 +03:00
|
|
|
cmd pandocExe md "--to markdown"
|
2016-02-21 13:21:41 +03:00
|
|
|
-- XXX assume this is compiled
|
|
|
|
"--filter tools/pandocRemoveManonlyBlocks"
|
|
|
|
"-o" out
|
|
|
|
|
|
|
|
pandocFilters |%> \out -> do
|
|
|
|
need [out <.> "hs"]
|
2016-04-05 21:56:42 +03:00
|
|
|
cmd ("stack "++pandocFiltersResolver++" ghc") out
|
2016-02-21 13:21:41 +03:00
|
|
|
|
|
|
|
phony "clean" $ do
|
|
|
|
putNormal "Cleaning generated files"
|
|
|
|
removeFilesAfter "" manpageNroffs
|
|
|
|
removeFilesAfter "" manpageFilteredMds
|
|
|
|
putNormal "Cleaning object files"
|
|
|
|
removeFilesAfter "tools" ["*.o","*.p_o","*.hi"]
|
|
|
|
putNormal "Cleaning shake build files"
|
|
|
|
removeFilesAfter buildDir ["//*"]
|
|
|
|
|
|
|
|
-- manpageHtmls |%> \out -> do
|
|
|
|
-- let
|
|
|
|
-- p = dropExtension $ takeFileName out
|
|
|
|
-- md = manpageDir p </> p <.> "md"
|
|
|
|
-- tmpl = "doc/manpage.html"
|
|
|
|
-- need [md, tmpl]
|
2016-04-06 01:23:20 +03:00
|
|
|
-- cmd pandocExe md "--to html --filter tools/pandocRemoveManpageBlocks.hs --template" tmpl "-o" out
|
2016-02-21 13:21:41 +03:00
|
|
|
|
|
|
|
-- "site/manual2.html" %> \out -> do
|
|
|
|
-- need ["site/manual2.md"]
|
2016-04-06 01:23:20 +03:00
|
|
|
-- cmd pandocExe "site/manual2.md -o" out
|
2016-02-21 13:21:41 +03:00
|
|
|
|
|
|
|
-- "_build//*.o" %> \out -> do
|
|
|
|
-- let c = dropDirectory1 $ out -<.> "c"
|
|
|
|
-- let m = out -<.> "m"
|
|
|
|
-- () <- cmd "gcc -c" [c] "-o" [out] "-MMD -MF" [m]
|
|
|
|
-- needMakefileDependencies m
|