aboutsummaryrefslogtreecommitdiffhomepage
path: root/install.sh
blob: 7fc1cfcf4cb4440d0da8c30e5cc593cd7ed675eb (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
#!/bin/sh

set -e

: ${prefix:=/usr/local}
: ${DESTDIR:=}

verbose() { echo "$@" >&2 && "$@"; }
install_v()
{
	# Install $1 into $2/ with mode $3
	verbose install -d "$2" &&
	verbose install -m "$3" "$1" "$2"
}

install_v git-remote-gcrypt "$DESTDIR$prefix/bin" 755

if command -v rst2man >/dev/null
then
	rst2man='rst2man'
elif command -v rst2man.py >/dev/null # it is installed as rst2man.py on macOS
then
	rst2man='rst2man.py'
fi

if [ -n "$rst2man" ]
then
	trap 'rm -f git-remote-gcrypt.1.gz' EXIT
	verbose $rst2man ./README.rst | gzip -9 > git-remote-gcrypt.1.gz
	install_v git-remote-gcrypt.1.gz "$DESTDIR$prefix/share/man/man1" 644
else
	echo "'rst2man' not found, man page not installed" >&2
fi