summaryrefslogtreecommitdiff
path: root/doc/build.sh
blob: e06a4a205a6dbb29300ac379f9ec15451c308fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash

export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin

if [ ! -f zerotier-cli.1.md ]; then
	echo 'This script must be run from the doc/ subfolder of the ZeroTier tree.'
fi

rm -f *.1 *.2 *.8

if [ -e /usr/bin/ronn ]; then
	/usr/bin/ronn -r zerotier-cli.1.md
	/usr/bin/ronn -r zerotier-idtool.1.md
	/usr/bin/ronn -r zerotier-one.8.md
else
	if [ ! -f /usr/bin/node -a ! -f /usr/bin/nodejs ]; then
		echo 'Unable to build man pages: no /usr/bin/ronn or /usr/bin/node / nodejs!'
		exit 0
	fi

	if [ ! -f node_modules/marked-man/bin/marked-man ]; then
		echo 'Installing MarkDown to ROFF converter...'
		npm install marked-man
		echo
	fi

	NODE=/usr/bin/node
	if [ -e /usr/bin/nodejs ]; then
		NODE=/usr/bin/nodejs
	fi

	$NODE node_modules/marked-man/bin/marked-man zerotier-cli.1.md >zerotier-cli.1
	$NODE node_modules/marked-man/bin/marked-man zerotier-idtool.1.md >zerotier-idtool.1
	$NODE node_modules/marked-man/bin/marked-man zerotier-one.8.md >zerotier-one.8
fi

exit 0