61940a9c06
This gives users who build from the source tarball, but do not want to install pandoc, access to the man pages. Apperently the gocryptfs homebrew package ships without the man pages at the moment to avoid pandoc. Requested at https://github.com/rfjakob/gocryptfs/issues/355
19 lines
363 B
Bash
Executable File
19 lines
363 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
cd $(dirname "$0")
|
|
|
|
# Render Markdown to a proper man(1) manpage
|
|
function render {
|
|
IN=$1
|
|
OUT=$2
|
|
echo "Rendering $IN to $OUT"
|
|
echo ".\\\" This man page was generated from $IN. View it using 'man ./$OUT'" > $OUT
|
|
echo ".\\\"" >> $OUT
|
|
pandoc "$IN" -s -t man >> $OUT
|
|
}
|
|
|
|
render MANPAGE.md gocryptfs.1
|
|
render MANPAGE-XRAY.md gocryptfs-xray.1
|
|
|