diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-08 09:43:53 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-08 21:56:42 -0700 |
commit | 95a19fcff001b19d5da92e8e4332141a93ea0d48 (patch) | |
tree | 51b3e63a8bf97842a0d40ba38f987495486cc6c3 | |
parent | d96a5629bc7a8f4c711ffdb7299dfe8a9a041216 (diff) | |
download | pandoc-95a19fcff001b19d5da92e8e4332141a93ea0d48.tar.gz |
INSTALL instructions fix for libicu.
-rw-r--r-- | INSTALL.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/INSTALL.md b/INSTALL.md index e19f58334..b793a3231 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -241,9 +241,10 @@ The easiest way to build pandoc from source is to use [stack][stack]: vary by platform. Here is how it might work on macOS with Homebrew: brew install icu4c - cabal install --extra-lib-dirs=/usr/local/Cellar/icu4c/51.1/lib \ - --extra-include-dirs=/usr/local/Cellar/icu4c/51.1/include \ - -funicode_collation text-icu pandoc-citeproc + stack install pandoc-citeproc \ + --flag "pandoc-citeproc:unicode_collation" \ + --extra-lib-dirs=/usr/local/opt/icu4c/lib \ + --extra-include-dirs=/usr/local/opt/icu4c/include 6. The `pandoc.1` man page will be installed automatically. cabal shows you where it is installed: you may need to set your `MANPATH` |