-
Notifications
You must be signed in to change notification settings - Fork 237
/
setup.sh
73 lines (39 loc) · 1.54 KB
/
setup.sh
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env bash
# Tasks for specific system version.
if [[ "$OSTYPE" == "darwin"* ]] ; then
[ -n "$(brew --prefix)" ] && PATH=$(brew --prefix)/opt/coreutils/libexec/gnubin:$PATH
readonly _dir=$(dirname "$(readlink "$0" || echo "$(echo "$0" | sed -e 's,\\,/,g')")")
elif [[ "$OSTYPE" == "linux-gnu" ]] || [[ "$OSTYPE" == "linux-musl" ]] ; then
readonly _dir=$(dirname "$(readlink -f "$0" || echo "$(echo "$0" | sed -e 's,\\,/,g')")")
else
printf "Unsupported system version.\\n"
exit 1
fi
if [[ "$1" == "install" ]] ; then
printf "%s\\n" "Create symbolic link to /usr/local/bin"
if [[ -e "${_dir}/bin/htrace.sh" ]] ; then
if [[ ! -e "/usr/local/bin/htrace.sh" ]] ; then
ln -s "${_dir}/bin/htrace.sh" /usr/local/bin
fi
fi
printf "%s\\n" "Create man page to /usr/local/man/man8"
if [[ -e "${_dir}/static/man8/htrace.sh.8" ]] ; then
if [[ ! -e "/usr/local/man/man8/htrace.sh.8.gz" ]] ; then
mkdir -p /usr/local/man/man8
cp "${_dir}/static/man8/htrace.sh.8" /usr/local/man/man8
gzip /usr/local/man/man8/htrace.sh.8
fi
fi
elif [[ "$1" == "uninstall" ]] ; then
printf "%s\\n" "Remove symbolic link from /usr/local/bin"
if [[ -L "/usr/local/bin/htrace.sh" ]] ; then
unlink /usr/local/bin/htrace.sh
fi
printf "%s\\n" "Remove man page from /usr/local/man/man8"
if [[ -e "/usr/local/man/man8/htrace.sh.8.gz" ]] ; then
rm /usr/local/man/man8/htrace.sh.8.gz
fi
else
printf "Usage:\\n ./setup.sh install (Install)\\n ./setup.sh uninstall (Uninstall)\\n"
fi
exit 0