2016-02-21 13:21:41 +03:00
|
|
|
#!/usr/bin/env stack
|
2016-12-29 22:21:32 +03:00
|
|
|
{- stack exec --verbosity info
|
2016-04-05 16:59:52 +03:00
|
|
|
--package base-prelude
|
|
|
|
--package directory
|
|
|
|
--package extra
|
2016-10-28 21:15:10 +03:00
|
|
|
--package pandoc
|
2016-04-05 16:59:52 +03:00
|
|
|
--package safe
|
|
|
|
--package shake
|
|
|
|
--package time
|
2016-12-31 02:43:47 +03:00
|
|
|
-- ghc -threaded
|
2016-04-05 16:59:52 +03:00
|
|
|
-}
|
|
|
|
{-
|
2016-10-28 21:15:10 +03:00
|
|
|
One of two project scripts files (Makefile, Shake.hs).
|
|
|
|
This one provides a stronger programming language and more
|
|
|
|
platform independence than Make. It will build needed packages (above)
|
|
|
|
on first run and whenever the resolver in stack.yaml changes.
|
|
|
|
To minimise such startup delays, and reduce sensitivity to git checkout,
|
2016-12-29 22:21:32 +03:00
|
|
|
compiling is recommended; run the script in interpreted mode to do that.
|
2016-10-28 21:15:10 +03:00
|
|
|
|
|
|
|
It requires stack (https://haskell-lang.org/get-started) and
|
|
|
|
auto-installs the packages above. Also, some rules require:
|
2016-10-29 19:45:59 +03:00
|
|
|
- site/hakyll-std/hakyll-std
|
|
|
|
- runhaskell
|
2016-10-28 21:15:10 +03:00
|
|
|
- groff
|
|
|
|
- m4
|
|
|
|
- makeinfo
|
2016-10-29 19:45:59 +03:00
|
|
|
- git
|
|
|
|
- patch
|
2016-10-28 21:15:10 +03:00
|
|
|
|
2016-12-31 01:32:43 +03:00
|
|
|
Usage: see below. Also:
|
|
|
|
|
|
|
|
$ find hledger-lib hledger | entr ./Shake website # rebuild web files on changes in these dirs
|
2016-04-05 16:59:52 +03:00
|
|
|
|
2016-10-28 21:15:10 +03:00
|
|
|
Shake wishes:
|
|
|
|
just one shake import
|
|
|
|
wildcards in phony rules
|
|
|
|
multiple individually accessible wildcards
|
|
|
|
not having to write :: Action ExitCode after a non-final cmd
|
|
|
|
-}
|
2016-04-05 16:59:52 +03:00
|
|
|
|
2016-10-29 20:51:43 +03:00
|
|
|
{-# LANGUAGE PackageImports, ScopedTypeVariables #-}
|
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
import Prelude ()
|
|
|
|
import "base-prelude" BasePrelude
|
|
|
|
import "extra" Data.List.Extra
|
|
|
|
import "safe" Safe
|
|
|
|
import "shake" Development.Shake
|
|
|
|
import "shake" Development.Shake.FilePath
|
|
|
|
import "time" Data.Time
|
|
|
|
import "directory" System.Directory as S (getDirectoryContents)
|
|
|
|
|
2016-10-28 21:15:10 +03:00
|
|
|
usage = unlines
|
|
|
|
["Usage:"
|
2016-12-29 22:21:32 +03:00
|
|
|
,"./Shake.hs # compile this script"
|
2016-10-28 21:15:10 +03:00
|
|
|
,"./Shake # show commands"
|
2017-01-05 03:17:39 +03:00
|
|
|
,"./Shake docs # generate built-in manuals (plaintext, man, info)"
|
|
|
|
,"./Shake website # generate the web site (web manuals, web pages)"
|
|
|
|
-- ,"./Shake manpages # generate nroff files for man"
|
|
|
|
-- ,"./Shake txtmanpages # generate text man pages for embedding"
|
|
|
|
-- ,"./Shake infomanpages # generate info files for info"
|
|
|
|
-- ,"./Shake webmanpages # generate individual web man pages for hakyll"
|
|
|
|
-- ,"./Shake webmanall # generate all-in-one web manual for hakyll"
|
2017-01-26 17:40:50 +03:00
|
|
|
-- ,"./Shake cookbookall # generate all-in-one web cookbook for hakyll"
|
2017-01-05 03:17:39 +03:00
|
|
|
,"./Shake site/doc/VER/.snapshot # generate and save a versioned web site snapshot"
|
2016-10-28 21:15:10 +03:00
|
|
|
,"./Shake all # generate everything"
|
|
|
|
,"./Shake clean # clean generated files"
|
|
|
|
,"./Shake Clean # clean harder"
|
|
|
|
,"./Shake --help # show options, eg --color"
|
|
|
|
]
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2017-05-30 17:26:24 +03:00
|
|
|
pandoc = "stack exec -- pandoc" -- pandoc from project's stackage snapshot
|
2016-04-10 00:24:33 +03:00
|
|
|
hakyllstd = "site/hakyll-std/hakyll-std"
|
2016-04-19 03:54:55 +03:00
|
|
|
makeinfo = "makeinfo"
|
2016-06-12 07:34:20 +03:00
|
|
|
-- nroff = "nroff"
|
|
|
|
groff = "groff"
|
2016-02-21 13:21:41 +03:00
|
|
|
|
|
|
|
main = do
|
|
|
|
|
|
|
|
pandocFilters <-
|
2017-01-09 20:42:26 +03:00
|
|
|
map ("tools" </>). nub . sort . map (-<.> "") . filter ("pandoc-" `isPrefixOf`)
|
|
|
|
<$> S.getDirectoryContents "tools"
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
shakeArgs
|
|
|
|
shakeOptions{
|
2016-04-13 06:32:01 +03:00
|
|
|
shakeVerbosity=Loud
|
2016-04-05 16:59:52 +03:00
|
|
|
-- ,shakeReport=[".shake.html"]
|
|
|
|
} $ do
|
|
|
|
|
|
|
|
want ["help"]
|
|
|
|
|
|
|
|
phony "help" $ liftIO $ putStrLn usage
|
|
|
|
|
2016-12-29 22:21:32 +03:00
|
|
|
-- phony "compile" $ need ["Shake"]
|
|
|
|
--
|
|
|
|
-- "Shake" %> \out -> do
|
|
|
|
-- need [out <.> "hs"]
|
2017-01-05 03:17:39 +03:00
|
|
|
-- unit $ cmd "./Shake.hs" -- running as stack script installs deps and compiles
|
2016-12-29 22:21:32 +03:00
|
|
|
-- putLoud "You can now run ./Shake instead of ./Shake.hs"
|
2016-04-05 16:59:52 +03:00
|
|
|
|
2016-05-28 22:10:51 +03:00
|
|
|
phony "all" $ need ["docs", "website"]
|
2016-04-06 02:16:38 +03:00
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
-- docs
|
2016-04-08 17:01:11 +03:00
|
|
|
|
|
|
|
let
|
|
|
|
manpageNames = [ -- in suggested reading order
|
|
|
|
"hledger.1"
|
|
|
|
,"hledger-ui.1"
|
|
|
|
,"hledger-web.1"
|
|
|
|
,"hledger-api.1"
|
|
|
|
,"hledger_journal.5"
|
|
|
|
,"hledger_csv.5"
|
2016-04-13 07:10:02 +03:00
|
|
|
,"hledger_timeclock.5"
|
2016-04-08 17:01:11 +03:00
|
|
|
,"hledger_timedot.5"
|
|
|
|
]
|
2016-04-16 13:47:00 +03:00
|
|
|
-- manuals m4 source, may include other files (hledger/doc/hledger.1.m4.md)
|
|
|
|
m4manpages = [manpageDir m </> m <.> "m4.md" | m <- manpageNames]
|
2017-01-26 17:40:50 +03:00
|
|
|
|
|
|
|
-- manuals rendered to nroff, ready for man (hledger/doc/hledger.1)
|
2016-04-16 13:47:00 +03:00
|
|
|
nroffmanpages = [manpageDir m </> m | m <- manpageNames]
|
2017-01-26 17:40:50 +03:00
|
|
|
|
|
|
|
-- manuals rendered to text, ready for embedding (hledger/doc/hledger.1.txt)
|
2016-04-16 13:47:00 +03:00
|
|
|
txtmanpages = [manpageDir m </> m <.> "txt" | m <- manpageNames]
|
2017-01-26 17:40:50 +03:00
|
|
|
|
|
|
|
-- manuals rendered to info, ready for info (hledger/doc/hledger.1.info)
|
2016-04-19 03:54:55 +03:00
|
|
|
infomanpages = [manpageDir m </> m <.> "info" | m <- manpageNames]
|
2017-01-26 17:40:50 +03:00
|
|
|
|
|
|
|
-- manuals rendered to markdown, ready for web output by hakyll (site/hledger.md)
|
2016-04-16 13:47:00 +03:00
|
|
|
webmanpages = ["site" </> manpageNameToUri m <.>"md" | m <- manpageNames]
|
2017-01-26 17:40:50 +03:00
|
|
|
|
|
|
|
-- manuals rendered to markdown and combined, ready for web output by hakyll
|
2017-01-05 03:17:39 +03:00
|
|
|
webmanall = "site/manual.md"
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2017-01-26 20:22:57 +03:00
|
|
|
-- cookbook pages in markdown, ready for web output by hakyll (site/csv-import.md).
|
|
|
|
-- Keeping these in the main site directory allows hakyll-std to see them (and simpler urls).
|
2017-01-26 20:50:06 +03:00
|
|
|
-- These should be kept ordered like the links on the docs page, so that the
|
|
|
|
-- combined cookbook follows the same order.
|
|
|
|
-- XXX This, as well as keeping page link, heading, and filename synced, will be a bit tricky.
|
|
|
|
-- Current policy:
|
|
|
|
-- filenames are simple and stable as possible, beginning with TOPIC- prefix when appropriate
|
|
|
|
-- titles are succinct and practical/action-oriented
|
2017-01-26 17:40:50 +03:00
|
|
|
cookbookpages = [
|
2017-01-27 01:19:59 +03:00
|
|
|
"site/start-journal.md"
|
|
|
|
,"site/version-control.md"
|
|
|
|
,"site/entries.md"
|
2017-01-26 17:40:50 +03:00
|
|
|
,"site/csv-import.md"
|
2017-01-26 20:22:57 +03:00
|
|
|
,"site/account-aliases.md"
|
|
|
|
,"site/account-separator.md"
|
2017-02-02 22:46:25 +03:00
|
|
|
,"site/investments.md"
|
2017-01-26 17:40:50 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
-- cookbook pages combined, ready for web output by hakyll
|
|
|
|
cookbookall = "site/cookbook.md"
|
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
-- hledger.1 -> hledger/doc, hledger_journal.5 -> hledger-lib/doc
|
|
|
|
manpageDir m
|
|
|
|
| '_' `elem` m = "hledger-lib" </> "doc"
|
|
|
|
| otherwise = dropExtension m </> "doc"
|
2016-04-08 17:01:11 +03:00
|
|
|
|
|
|
|
-- hledger.1 -> hledger, hledger_journal.5 -> journal
|
|
|
|
manpageNameToUri m | "hledger_" `isPrefixOf` m = dropExtension $ drop 8 m
|
|
|
|
| otherwise = dropExtension m
|
|
|
|
|
|
|
|
-- hledger -> hledger.1, journal -> hledger_journal.5
|
|
|
|
manpageUriToName u | "hledger" `isPrefixOf` u = u <.> "1"
|
|
|
|
| otherwise = "hledger_" ++ u <.> "5"
|
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
phony "docs" $ do
|
|
|
|
need $
|
|
|
|
nroffmanpages
|
2016-04-19 03:54:55 +03:00
|
|
|
++ infomanpages
|
2016-04-16 13:47:00 +03:00
|
|
|
++ txtmanpages
|
2016-04-08 17:01:11 +03:00
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
-- compile pandoc helpers
|
doc: experimental m4-based man page build process
The new m4manpages, m4webmanpages targets generate nroff and markdown
man pages via an alternate, excitingly complicated process, involving
shake, hakyll, pandoc *and* m4. Currently just the hledger man page is
processed this way, and the output (hledger/doc/m4-hledger.1,
site/m4-hledger.1.md) is equivalent to that of the non-m4 process.
Pro: selecting and massaging web/man content may be smoother with m4
than with pandoc filters. File inclusion allows documentation to be
broken up into chunks, which may be easier to edit, reorganize and
reuse. Macros could reduce boilerplate and enable more featureful and
attractive docs.
Con: the non-m4 process was simpler, easier to for contributors to
understand and working well enough. YAGNI.
2016-04-06 18:23:12 +03:00
|
|
|
phony "pandocfilters" $ need pandocFilters
|
2016-04-16 13:47:00 +03:00
|
|
|
|
doc: experimental m4-based man page build process
The new m4manpages, m4webmanpages targets generate nroff and markdown
man pages via an alternate, excitingly complicated process, involving
shake, hakyll, pandoc *and* m4. Currently just the hledger man page is
processed this way, and the output (hledger/doc/m4-hledger.1,
site/m4-hledger.1.md) is equivalent to that of the non-m4 process.
Pro: selecting and massaging web/man content may be smoother with m4
than with pandoc filters. File inclusion allows documentation to be
broken up into chunks, which may be easier to edit, reorganize and
reuse. Macros could reduce boilerplate and enable more featureful and
attractive docs.
Con: the non-m4 process was simpler, easier to for contributors to
understand and working well enough. YAGNI.
2016-04-06 18:23:12 +03:00
|
|
|
pandocFilters |%> \out -> do
|
|
|
|
need [out <.> "hs"]
|
|
|
|
cmd ("stack ghc") out
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
-- man pages
|
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
-- use m4 and pandoc to process macros, filter content, and convert to nroff suitable for man output
|
2016-04-16 13:47:00 +03:00
|
|
|
phony "manpages" $ need nroffmanpages
|
|
|
|
|
|
|
|
nroffmanpages |%> \out -> do -- hledger/doc/hledger.1
|
2016-04-16 20:09:51 +03:00
|
|
|
let src = out <.> "m4.md"
|
|
|
|
lib = "doc/lib.m4"
|
|
|
|
dir = takeDirectory out
|
doc: experimental m4-based man page build process
The new m4manpages, m4webmanpages targets generate nroff and markdown
man pages via an alternate, excitingly complicated process, involving
shake, hakyll, pandoc *and* m4. Currently just the hledger man page is
processed this way, and the output (hledger/doc/m4-hledger.1,
site/m4-hledger.1.md) is equivalent to that of the non-m4 process.
Pro: selecting and massaging web/man content may be smoother with m4
than with pandoc filters. File inclusion allows documentation to be
broken up into chunks, which may be easier to edit, reorganize and
reuse. Macros could reduce boilerplate and enable more featureful and
attractive docs.
Con: the non-m4 process was simpler, easier to for contributors to
understand and working well enough. YAGNI.
2016-04-06 18:23:12 +03:00
|
|
|
tmpl = "doc/manpage.nroff"
|
2016-04-16 20:09:51 +03:00
|
|
|
-- assume all other m4 files in dir are included by this one XXX not true in hledger-lib
|
|
|
|
deps <- liftIO $ filter (/= src) . filter (".m4.md" `isSuffixOf`) . map (dir </>) <$> S.getDirectoryContents dir
|
|
|
|
need $ src : lib : tmpl : deps ++ pandocFilters
|
|
|
|
cmd Shell
|
|
|
|
"m4 -P -DMAN -I" dir lib src "|"
|
|
|
|
pandoc "-f markdown -s --template" tmpl
|
2017-01-09 20:42:26 +03:00
|
|
|
-- "--filter tools/pandoc-drop-web-blocks"
|
|
|
|
"--filter tools/pandoc-drop-html-blocks"
|
|
|
|
"--filter tools/pandoc-drop-html-inlines"
|
|
|
|
"--filter tools/pandoc-drop-links"
|
|
|
|
"--filter tools/pandoc-drop-notes"
|
2016-04-08 07:58:42 +03:00
|
|
|
"-o" out
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
-- render man page nroffs to fixed-width text for embedding in executables, with nroff
|
2016-04-14 08:29:16 +03:00
|
|
|
phony "txtmanpages" $ need txtmanpages
|
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
txtmanpages |%> \out -> do -- hledger/doc/hledger.1.txt
|
|
|
|
let src = dropExtension out
|
|
|
|
need [src]
|
2016-06-12 07:34:20 +03:00
|
|
|
cmd Shell groff "-t -e -mandoc -Tascii" src "| col -bx >" out -- http://www.tldp.org/HOWTO/Man-Page/q10.html
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2016-04-19 03:54:55 +03:00
|
|
|
-- use m4 and pandoc to process macros, filter content, and convert to info, suitable for info viewing
|
|
|
|
phony "infomanpages" $ need infomanpages
|
|
|
|
|
2016-10-17 18:53:38 +03:00
|
|
|
infomanpages |%> \out -> do -- hledger/doc/hledger.1.info
|
2016-04-19 03:54:55 +03:00
|
|
|
let src = out -<.> "m4.md"
|
|
|
|
lib = "doc/lib.m4"
|
|
|
|
dir = takeDirectory out
|
|
|
|
-- assume all other m4 files in dir are included by this one XXX not true in hledger-lib
|
|
|
|
deps <- liftIO $ filter (/= src) . filter (".m4.md" `isSuffixOf`) . map (dir </>) <$> S.getDirectoryContents dir
|
|
|
|
need $ src : lib : deps ++ pandocFilters
|
|
|
|
cmd Shell
|
|
|
|
"m4 -P -I" dir lib src "|"
|
|
|
|
pandoc "-f markdown"
|
2017-01-09 20:42:26 +03:00
|
|
|
-- "--filter tools/pandoc-drop-web-blocks"
|
|
|
|
"--filter tools/pandoc-drop-html-blocks"
|
|
|
|
"--filter tools/pandoc-drop-html-inlines"
|
|
|
|
"--filter tools/pandoc-drop-links"
|
|
|
|
"--filter tools/pandoc-drop-notes"
|
2016-04-19 03:54:55 +03:00
|
|
|
"-t texinfo |"
|
|
|
|
makeinfo "--force --no-split -o" out
|
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
-- web site
|
|
|
|
|
2016-05-28 22:10:51 +03:00
|
|
|
phony "website" $ do
|
2016-10-28 21:15:10 +03:00
|
|
|
need $
|
2016-04-16 13:47:00 +03:00
|
|
|
webmanpages ++
|
2017-01-05 03:17:39 +03:00
|
|
|
[webmanall
|
2017-01-26 17:40:50 +03:00
|
|
|
,cookbookall
|
2016-04-16 13:47:00 +03:00
|
|
|
,hakyllstd
|
|
|
|
]
|
|
|
|
cmd Shell (Cwd "site") "hakyll-std/hakyll-std" "build"
|
2017-01-05 03:17:39 +03:00
|
|
|
-- website also links to old manuals, which are generated manually
|
|
|
|
-- with ./Shake websnapshot and committed
|
2017-03-27 15:09:42 +03:00
|
|
|
-- TODO: when pandoc filters are missing, ./Shake website complains about them before building them
|
|
|
|
-- ./Shake.hs && ./Shake Clean && (cd site/hakyll-std; ./hakyll-std.hs) && ./Shake website
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2016-04-16 20:09:51 +03:00
|
|
|
-- use m4 and pandoc to process macros and filter content, leaving markdown suitable for web output
|
2016-04-08 17:01:11 +03:00
|
|
|
phony "webmanpages" $ need webmanpages
|
2016-04-16 13:47:00 +03:00
|
|
|
|
|
|
|
webmanpages |%> \out -> do -- site/hledger.md
|
|
|
|
let m = manpageUriToName $ dropExtension $ takeFileName out -- hledger.1
|
2016-04-16 20:09:51 +03:00
|
|
|
dir = manpageDir m
|
|
|
|
src = dir </> m <.> "m4.md"
|
|
|
|
lib = "doc/lib.m4"
|
2016-04-09 23:36:48 +03:00
|
|
|
heading = let h = dropExtension m
|
|
|
|
in if "hledger_" `isPrefixOf` h
|
|
|
|
then drop 8 h ++ " format"
|
|
|
|
else h
|
2016-04-16 20:09:51 +03:00
|
|
|
-- assume all other m4 files in dir are included by this one XXX not true in hledger-lib
|
|
|
|
deps <- liftIO $ filter (/= src) . filter (".m4.md" `isSuffixOf`) . map (dir </>) <$> S.getDirectoryContents dir
|
|
|
|
need $ src : lib : deps ++ pandocFilters
|
2016-04-09 23:36:48 +03:00
|
|
|
liftIO $ writeFile out $ "# " ++ heading ++ "\n\n"
|
2016-04-16 20:09:51 +03:00
|
|
|
cmd Shell
|
|
|
|
"m4 -P -DMAN -DWEB -I" dir lib src "|"
|
|
|
|
pandoc "-f markdown -t markdown --atx-headers"
|
2017-01-09 20:42:26 +03:00
|
|
|
"--filter tools/pandoc-demote-headers"
|
|
|
|
-- "--filter tools/pandoc-add-toc"
|
|
|
|
-- "--filter tools/pandoc-drop-man-blocks"
|
2016-04-09 23:36:48 +03:00
|
|
|
">>" out
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2016-04-09 23:19:31 +03:00
|
|
|
-- adjust and combine man page mds for single-page web output, using pandoc
|
2017-01-05 03:17:39 +03:00
|
|
|
phony "webmanall" $ need [ webmanall ]
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2017-01-05 03:17:39 +03:00
|
|
|
webmanall %> \out -> do
|
2016-04-08 17:01:11 +03:00
|
|
|
need webmanpages
|
2017-01-27 02:25:06 +03:00
|
|
|
liftIO $ writeFile webmanall "* toc\n\n" -- # Big Manual\n\n -- TOC style is better without main heading,
|
2016-04-08 17:01:11 +03:00
|
|
|
forM_ webmanpages $ \f -> do -- site/hledger.md, site/journal.md
|
2017-01-05 03:17:39 +03:00
|
|
|
cmd Shell ("printf '\\n\\n' >>") webmanall :: Action ExitCode
|
2016-04-09 04:14:49 +03:00
|
|
|
cmd Shell "pandoc" f "-t markdown --atx-headers"
|
2017-01-09 20:42:26 +03:00
|
|
|
-- "--filter tools/pandoc-drop-man-blocks"
|
|
|
|
"--filter tools/pandoc-drop-toc"
|
|
|
|
-- "--filter tools/pandoc-capitalize-headers"
|
|
|
|
"--filter tools/pandoc-demote-headers"
|
2017-01-05 03:17:39 +03:00
|
|
|
">>" webmanall :: Action ExitCode
|
2016-08-07 18:28:47 +03:00
|
|
|
|
2017-01-26 17:40:50 +03:00
|
|
|
-- adjust and combine recipe mds for single-page web output, using pandoc
|
|
|
|
phony "cookbookall" $ need [ cookbookall ]
|
|
|
|
|
|
|
|
cookbookall %> \out -> do
|
2017-01-26 20:50:06 +03:00
|
|
|
need cookbookpages -- XXX seems not to work, not rebuilt when a recipe changes
|
2017-01-27 02:25:06 +03:00
|
|
|
liftIO $ writeFile cookbookall "* toc\n\n" -- # User Cookbook\n\n -- TOC style is better without main heading,
|
2017-01-26 17:40:50 +03:00
|
|
|
forM_ cookbookpages $ \f -> do -- site/csv-import.md, site/account-aliases.md, ...
|
|
|
|
cmd Shell ("printf '\\n\\n' >>") cookbookall :: Action ExitCode
|
|
|
|
cmd Shell "pandoc" f "-t markdown --atx-headers"
|
|
|
|
-- "--filter tools/pandoc-drop-man-blocks"
|
|
|
|
"--filter tools/pandoc-drop-toc"
|
|
|
|
-- "--filter tools/pandoc-capitalize-headers"
|
|
|
|
"--filter tools/pandoc-demote-headers"
|
|
|
|
">>" cookbookall :: Action ExitCode
|
|
|
|
|
2017-01-05 03:17:39 +03:00
|
|
|
-- build the currently checked out web docs and save as a named snapshot
|
|
|
|
"site/doc/*/.snapshot" %> \out -> do
|
|
|
|
need [ webmanall ]
|
|
|
|
let snapshot = takeDirectory out
|
|
|
|
cmd Shell "mkdir -p" snapshot :: Action ExitCode
|
|
|
|
forM_ webmanpages $ \f -> do -- site/hledger.md, site/journal.md
|
|
|
|
cmd Shell "cp" f (snapshot </> takeFileName f) :: Action ExitCode
|
|
|
|
cmd Shell "cp" "site/manual.md" snapshot :: Action ExitCode
|
|
|
|
cmd Shell "cp -r site/images" snapshot :: Action ExitCode
|
|
|
|
cmd Shell "touch" out -- :: Action ExitCode
|
2016-04-16 15:55:16 +03:00
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
-- build standard hakyll script used for site rendering
|
|
|
|
hakyllstd %> \out -> do
|
|
|
|
let dir = takeDirectory out
|
|
|
|
need [out <.> "hs", dir </> "TableOfContents.hs"] -- XXX hard-coded dep
|
2016-10-29 20:51:43 +03:00
|
|
|
unit $ liftIO $
|
2016-12-29 22:14:36 +03:00
|
|
|
cmd (Cwd dir) "./hakyll-std.hs"
|
2016-10-29 20:51:43 +03:00
|
|
|
`catch` (\(e::IOException) -> putStr $ unlines $
|
|
|
|
["I could not run ./hakyll-std.hs in "++dir++" to install Hakyll."
|
|
|
|
,"If you see a hakyll-std build error after this, please do it manually:"
|
2016-12-29 22:14:36 +03:00
|
|
|
,"$ (cd site/hakyll-std; ./hakyll-std.hs)"
|
2016-10-29 20:51:43 +03:00
|
|
|
,"and try again."
|
|
|
|
])
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2016-04-06 01:40:59 +03:00
|
|
|
-- cleanup
|
|
|
|
|
2016-02-21 13:21:41 +03:00
|
|
|
phony "clean" $ do
|
|
|
|
putNormal "Cleaning generated files"
|
2016-04-08 17:01:11 +03:00
|
|
|
removeFilesAfter "." webmanpages
|
2017-01-26 17:40:50 +03:00
|
|
|
removeFilesAfter "." [webmanall, cookbookall]
|
doc: experimental m4-based man page build process
The new m4manpages, m4webmanpages targets generate nroff and markdown
man pages via an alternate, excitingly complicated process, involving
shake, hakyll, pandoc *and* m4. Currently just the hledger man page is
processed this way, and the output (hledger/doc/m4-hledger.1,
site/m4-hledger.1.md) is equivalent to that of the non-m4 process.
Pro: selecting and massaging web/man content may be smoother with m4
than with pandoc filters. File inclusion allows documentation to be
broken up into chunks, which may be easier to edit, reorganize and
reuse. Macros could reduce boilerplate and enable more featureful and
attractive docs.
Con: the non-m4 process was simpler, easier to for contributors to
understand and working well enough. YAGNI.
2016-04-06 18:23:12 +03:00
|
|
|
|
|
|
|
phony "Clean" $ do
|
|
|
|
need ["clean"]
|
2016-04-10 00:24:33 +03:00
|
|
|
putNormal "Cleaning all hakyll generated files"
|
|
|
|
removeFilesAfter "site" ["_*"]
|
|
|
|
putNormal "Cleaning executables"
|
|
|
|
removeFilesAfter "." $ hakyllstd : pandocFilters
|
2016-10-29 19:45:59 +03:00
|
|
|
putNormal "Cleaning object files" -- also forces rebuild of executables
|
2017-03-27 14:39:00 +03:00
|
|
|
removeFilesAfter "tools" ["*.o","*.p_o","*.hi"]
|
2016-04-10 00:24:33 +03:00
|
|
|
removeFilesAfter "site" ["*.o","*.p_o","*.hi"]
|
2016-02-21 13:21:41 +03:00
|
|
|
putNormal "Cleaning shake build files"
|
2016-04-13 06:32:01 +03:00
|
|
|
removeFilesAfter ".shake" ["//*"]
|