-
Notifications
You must be signed in to change notification settings - Fork 10
/
install.sh
177 lines (142 loc) · 3.43 KB
/
install.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#!/bin/sh
# Heavily modified from https://github.com/japaric/trust/blob/gh-pages/install.sh.
help() {
cat <<'EOF'
Install a binary release of a Rust crate hosted on GitHub.
Usage:
install.sh [options]
Options:
-h, --help Display this message
--git SLUG Get the crate from "https://github/$SLUG"
-f, --force Force overwriting an existing binary
--crate NAME Name of the crate to install (default <repository name>)
--tag TAG Tag (version) of the crate to install (default <latest release>)
--to LOCATION Where to install the binary (default /usr/local/bin)
EOF
}
say() {
echo "install.sh: $1"
}
say_err() {
say "$1" >&2
}
err() {
if [ -n "$td" ]; then
rm -rf "$td"
fi
say_err "ERROR $1"
exit 1
}
need() {
if ! command -v "$1" > /dev/null 2>&1; then
err "need $1 (command not found)"
fi
}
force=false
while test $# -gt 0; do
case $1 in
--crate)
crate=$2
shift
;;
--force | -f)
force=true
;;
--git)
git=$2
shift
;;
--help | -h)
help
exit 0
;;
--tag)
tag=$2
shift
;;
--to)
dest=$2
shift
;;
*)
;;
esac
shift
done
# Dependencies
need basename
need curl
need install
need mkdir
need mktemp
need tar
# Optional dependencies
if [ -z "$crate" ] || [ -z "$tag" ] || [ -z "$target" ]; then
need cut
fi
if [ -z "$tag" ]; then
need rev
fi
if [ -z "$git" ]; then
# shellcheck disable=SC2016
err 'must specify a git repository using `--git`. Example: `install.sh --git japaric/cross`'
fi
url="https://github.com/$git"
if [ "$(curl --head --write-out "%{http_code}\n" --silent --output /dev/null "$url")" -eq "404" ]; then
err "GitHub repository $git does not exist"
fi
say_err "GitHub repository: $url"
if [ -z "$crate" ]; then
crate=$(echo "$git" | cut -d'/' -f2)
fi
say_err "Crate: $crate"
if [ -z "$dest" ]; then
dest="/usr/local/bin"
fi
if [ -e "$dest/$crate" ] && [ $force = false ]; then
err "$crate already exists in $dest, use --force to overwrite the existing binary"
fi
url="$url/releases"
if [ -z "$tag" ]; then
tag=$(curl "https://api.github.com/repos/$git/releases/latest" | grep "tag_name" | cut -d'"' -f4)
say_err "Tag: latest ($tag)"
else
say_err "Tag: $tag"
fi
case "$(uname -s)" in
"Darwin")
case "$(uname -m)" in
"x86_64")
target="x86_64-apple-darwin"
;;
"arm64")
target="aarch64-apple-darwin"
;;
esac
;;
"Linux")
platform="unknown-linux-musl"
target="$(uname -m)-$platform"
;;
esac
say_err "Target: $target"
url="$url/download/$tag/$crate-$tag-$target.tar.gz"
say_err "Downloading: $url"
if [ "$(curl --head --write-out "%{http_code}\n" --silent --output /dev/null "$url")" -eq "404" ]; then
err "$url does not exist, you will need to build $crate from source"
fi
td=$(mktemp -d || mktemp -d -t tmp)
curl -sL "$url" | tar -C "$td" -xz
say_err "Installing to: $dest"
for f in "$td"/*; do
[ -e "$f" ] || break # handle the case of no *.wav files
test -x "$f" || continue
if [ -e "$dest/$crate" ] && [ $force = false ]; then
err "$crate already exists in $dest"
else
mkdir -p "$dest"
cp "$f" "$dest"
chmod 0755 "$dest/$crate"
fi
done
rm -rf "$td"