forked from xi-editor/xi-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·421 lines (358 loc) · 13.1 KB
/
Copy pathinstall.sh
File metadata and controls
executable file
·421 lines (358 loc) · 13.1 KB
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
#!/bin/sh
# shellcheck shell=dash
# shellcheck disable=SC3043
# Official ee installer.
# Runs on Unix-like shells and installs latest ee release from GitHub.
REPO_OWNER="ffimnsr"
REPO_NAME="ee"
PACKAGE_NAME="ee"
main() {
if [ "${KSH_VERSION-}" = 'Version JM 93t+ 2010-03-05' ]; then
err 'installer does not work with this ksh93 version; please try bash'
fi
set -u
parse_args "$@"
local _arch
_arch="${ARCH:-$(ensure get_architecture)}"
assert_nz "${_arch}" "arch"
echo "Detected architecture: ${_arch}"
local _bin_name
_bin_name="${PACKAGE_NAME}"
local _tmp_dir
_tmp_dir="$(mktemp -d)" || err "mktemp: could not create temporary directory"
cd "${_tmp_dir}" || err "cd: failed to enter directory: ${_tmp_dir}"
echo "Temporary directory: ${_tmp_dir}"
local _package
_package="$(ensure download_ee "${_arch}")"
assert_nz "${_package}" "package"
echo "Downloaded package: ${_package}"
maybe_verify_checksum "${_package}"
case "${_package}" in
*.tar.gz) need_cmd tar; ensure tar -xf "${_package}" ;;
*.zip) need_cmd unzip; ensure unzip -oq "${_package}" ;;
*) err "unsupported package format: ${_package}" ;;
esac
local _filename_no_ext
_filename_no_ext=$(basename "${_package}" | sed -E 's/\.(tar\.gz|zip)$//')
ensure try_sudo mkdir -p -- "${BIN_DIR}"
ensure try_sudo cp -- "${_filename_no_ext}/${_bin_name}" "${BIN_DIR}/${_bin_name}"
ensure try_sudo chmod +x "${BIN_DIR}/${_bin_name}"
echo "Installed ${PACKAGE_NAME} to ${BIN_DIR}"
local _bundle_src
_bundle_src=""
if [ -d "${_filename_no_ext}/runtime" ]; then
_bundle_src="${_filename_no_ext}/runtime"
elif [ -d "${_filename_no_ext}/share/${PACKAGE_NAME}" ]; then
_bundle_src="${_filename_no_ext}/share/${PACKAGE_NAME}"
fi
if [ -n "${_bundle_src}" ]; then
ensure try_sudo mkdir -p -- "${RUNTIME_DIR}"
ensure try_sudo cp -R -- "${_bundle_src}/." "${RUNTIME_DIR}/"
echo "Installed bundled runtime and plugins to ${RUNTIME_DIR}"
fi
if [ -f "${_filename_no_ext}/README.md" ]; then
ensure try_sudo mkdir -p -- "${DOC_DIR}/${PACKAGE_NAME}"
ensure try_sudo cp -- "${_filename_no_ext}/README.md" "${DOC_DIR}/${PACKAGE_NAME}/README.md"
echo "Installed documentation to ${DOC_DIR}"
fi
ensure try_sudo mkdir -p -- "${LIC_DIR}/${PACKAGE_NAME}"
for _file in LICENSE LICENSE-APACHE; do
if [ -f "${_filename_no_ext}/${_file}" ]; then
ensure try_sudo cp -- "${_filename_no_ext}/${_file}" "${LIC_DIR}/${PACKAGE_NAME}/${_file}"
fi
done
echo "Installed license files to ${LIC_DIR}"
echo ""
echo "${PACKAGE_NAME} is installed!"
if ! echo ":${PATH}:" | grep -Fq ":${BIN_DIR}:"; then
echo "Note: ${BIN_DIR} is not on your \$PATH."
echo "Add it to your shell profile before using ${PACKAGE_NAME}."
fi
maybe_install_completions "${BIN_DIR}"
}
maybe_install_completions() {
local _bin_dir _shell _rc_file _eval_line _comp_dir _comp_file
_bin_dir="$1"
# Skip when stdin is not a terminal (non-interactive installs).
if ! [ -t 0 ]; then
return 0
fi
printf "Install shell completions? [y/N] "
read -r _answer </dev/tty
case "${_answer}" in
[yY]|[yY][eE][sS]) ;;
*) return 0 ;;
esac
# Detect shell from $SHELL; fall back to asking the user.
_shell="$(basename "${SHELL:-}")"
case "${_shell}" in
bash|zsh|fish) ;;
*)
printf "Shell not detected. Enter shell name (bash/zsh/fish): "
read -r _shell </dev/tty
;;
esac
_ee="${_bin_dir}/${PACKAGE_NAME}"
case "${_shell}" in
bash)
_rc_file="${HOME}/.bashrc"
_eval_line='eval "$(ee completions bash)"'
if ! grep -qF 'ee completions' "${_rc_file}" 2>/dev/null; then
printf '\n%s\n' "${_eval_line}" >> "${_rc_file}"
echo "Added completions eval to ${_rc_file}"
else
echo "Completions already configured in ${_rc_file}"
fi
;;
zsh)
_rc_file="${HOME}/.zshrc"
_eval_line='eval "$(ee completions zsh)"'
if ! grep -qF 'ee completions' "${_rc_file}" 2>/dev/null; then
printf '\n%s\n' "${_eval_line}" >> "${_rc_file}"
echo "Added completions eval to ${_rc_file}"
else
echo "Completions already configured in ${_rc_file}"
fi
;;
fish)
_comp_dir="${HOME}/.config/fish/completions"
_comp_file="${_comp_dir}/ee.fish"
mkdir -p "${_comp_dir}"
"${_ee}" completions fish > "${_comp_file}" 2>/dev/null \
|| err "failed to generate fish completions"
echo "Installed fish completions to ${_comp_file}"
;;
*)
echo "Unsupported shell '${_shell}'. Run 'ee completions <shell>' manually."
return 0
;;
esac
echo "Restart your shell or source the rc file to enable completions."
}
parse_args() {
BIN_DIR_DEFAULT="${HOME}/.local/bin"
DATA_HOME_DEFAULT="${XDG_DATA_HOME:-${HOME}/.local/share}"
DOC_DIR_DEFAULT="${DATA_HOME_DEFAULT}/doc"
LIC_DIR_DEFAULT="${DATA_HOME_DEFAULT}/licenses"
RUNTIME_DIR_DEFAULT="${DATA_HOME_DEFAULT}/${PACKAGE_NAME}"
SUDO_DEFAULT="sudo"
BIN_DIR="${BIN_DIR_DEFAULT}"
DOC_DIR="${DOC_DIR_DEFAULT}"
LIC_DIR="${LIC_DIR_DEFAULT}"
RUNTIME_DIR="${RUNTIME_DIR_DEFAULT}"
SUDO="${SUDO_DEFAULT}"
while [ "$#" -gt 0 ]; do
case "$1" in
--arch) ARCH="$2" && shift 2 ;;
--arch=*) ARCH="${1#*=}" && shift 1 ;;
--bin-dir) BIN_DIR="$2" && shift 2 ;;
--bin-dir=*) BIN_DIR="${1#*=}" && shift 1 ;;
--doc-dir) DOC_DIR="$2" && shift 2 ;;
--doc-dir=*) DOC_DIR="${1#*=}" && shift 1 ;;
--license-dir) LIC_DIR="$2" && shift 2 ;;
--license-dir=*) LIC_DIR="${1#*=}" && shift 1 ;;
--runtime-dir) RUNTIME_DIR="$2" && shift 2 ;;
--runtime-dir=*) RUNTIME_DIR="${1#*=}" && shift 1 ;;
--sudo) SUDO="$2" && shift 2 ;;
--sudo=*) SUDO="${1#*=}" && shift 1 ;;
-h|--help) usage && exit 0 ;;
*) err "Unknown option: $1" ;;
esac
done
}
usage() {
local _text_heading _text_reset _arch
_text_heading="$(tput bold || true 2>/dev/null)$(tput smul || true 2>/dev/null)"
_text_reset="$(tput sgr0 || true 2>/dev/null)"
_arch="$(get_architecture || true)"
cat <<EOF
Install ${PACKAGE_NAME} from https://github.com/${REPO_OWNER}/${REPO_NAME}
${_text_heading}Usage:${_text_reset}
install.sh [OPTIONS]
${_text_heading}Options:${_text_reset}
--arch Override detected architecture [current: ${_arch}]
--bin-dir Override installation directory [default: ${BIN_DIR_DEFAULT}]
--doc-dir Override documentation directory [default: ${DOC_DIR_DEFAULT}]
--license-dir Override license directory [default: ${LIC_DIR_DEFAULT}]
--runtime-dir Override bundled runtime/plugins installation directory [default: ${RUNTIME_DIR_DEFAULT}]
--sudo Override command used to elevate privileges [default: ${SUDO_DEFAULT}]
-h, --help Print help
EOF
}
download_ee() {
local _arch _dld _releases_url _releases _package_url _filename _package
_arch="$1"
if check_cmd curl; then
_dld=curl
elif check_cmd wget; then
_dld=wget
else
need_cmd 'curl or wget'
fi
need_cmd grep
_releases_url="https://api.github.com/repos/${REPO_OWNER}/${REPO_NAME}/releases/latest"
case "${_dld}" in
curl) _releases="$(curl -fsSL "${_releases_url}")" || err "curl: failed to download ${_releases_url}" ;;
wget) _releases="$(wget -qO- "${_releases_url}")" || err "wget: failed to download ${_releases_url}" ;;
*) err "unsupported downloader: ${_dld}" ;;
esac
echo "${_releases}" | grep -q 'API rate limit exceeded' &&
err "GitHub API rate limit exceeded. Please try again later."
_package_url="$(echo "${_releases}" | grep '"browser_download_url"' | cut -d '"' -f 4 | grep -- "${_arch}\.tar\.gz$")" ||
err "${PACKAGE_NAME} has not been packaged for your architecture (${_arch})."
_filename=$(basename "${_package_url}")
_package="${_filename:-${PACKAGE_NAME}.tar.gz}"
case "${_dld}" in
curl) curl -fsSL -o "${_package}" "${_package_url}" || err "curl: failed to download ${_package_url}" ;;
wget) wget -qO "${_package}" "${_package_url}" || err "wget: failed to download ${_package_url}" ;;
*) err "unsupported downloader: ${_dld}" ;;
esac
CHECKSUM_URL="$(echo "${_releases}" | grep '"browser_download_url"' | cut -d '"' -f 4 | grep -- "$(basename "${_package_url}")\.sha256$" || true)"
echo "${_package}"
}
maybe_verify_checksum() {
local _package _checksum_file _expected _actual
_package="$1"
[ -n "${CHECKSUM_URL-}" ] || return 0
_checksum_file="$(basename "${CHECKSUM_URL}")"
if check_cmd curl; then
curl -fsSL -o "${_checksum_file}" "${CHECKSUM_URL}" || err "curl: failed to download ${CHECKSUM_URL}"
elif check_cmd wget; then
wget -qO "${_checksum_file}" "${CHECKSUM_URL}" || err "wget: failed to download ${CHECKSUM_URL}"
else
return 0
fi
_expected="$(parse_checksum_file "${_checksum_file}" "$(basename "${_package}")")"
[ -n "${_expected}" ] || return 0
_actual="$(compute_sha256 "${_package}")"
[ -n "${_actual}" ] || err "failed to compute SHA-256 for ${_package}"
if [ "${_actual}" != "${_expected}" ]; then
err "checksum mismatch for ${_package}: expected ${_expected}, got ${_actual}"
fi
echo "Verified SHA-256 for ${_package}"
}
parse_checksum_file() {
local _file _target _line _sum _name
_file="$1"
_target="$2"
while IFS= read -r _line; do
[ -n "${_line}" ] || continue
case "${_line}" in
*" "*)
_sum="$(printf '%s' "${_line}" | awk '{print $1}')"
_name="$(printf '%s' "${_line}" | awk '{print $2}' | sed 's/^\*//')"
[ "${_name}" = "${_target}" ] && { printf '%s' "${_sum}"; return 0; }
;;
*)
printf '%s' "${_line}"
return 0
;;
esac
done <"${_file}"
return 0
}
compute_sha256() {
local _file
_file="$1"
if check_cmd sha256sum; then
sha256sum "${_file}" | awk '{print $1}'
elif check_cmd shasum; then
shasum -a 256 "${_file}" | awk '{print $1}'
elif check_cmd openssl; then
openssl dgst -sha256 "${_file}" | awk '{print $NF}'
else
err "need one of: sha256sum, shasum, or openssl"
fi
}
try_sudo() {
if "$@" >/dev/null 2>&1; then
return 0
fi
need_sudo
"${SUDO}" "$@"
}
need_sudo() {
if ! check_cmd "${SUDO}"; then
err "could not find \`${SUDO}\`. Install sudo or rerun script with enough permissions."
fi
if ! "${SUDO}" -v; then
err "sudo permissions not granted, aborting installation"
fi
}
get_architecture() {
local _ostype _cputype _bitness _arch _clibtype
_ostype="$(uname -s)"
_cputype="$(uname -m)"
_clibtype="musl"
if [ "${_ostype}" = Linux ]; then
if [ "$(uname -o || true)" = Android ]; then
_ostype=Android
fi
fi
if [ "${_ostype}" = Darwin ] && [ "${_cputype}" = i386 ]; then
if sysctl hw.optional.x86_64 | grep -q ': 1'; then
_cputype=x86_64
fi
fi
case "${_ostype}" in
Android) _ostype=linux-android ;;
Linux) check_proc; _ostype=unknown-linux-${_clibtype}; _bitness=$(get_bitness) ;;
Darwin) _ostype=apple-darwin ;;
*) err "unrecognized OS type: ${_ostype}" ;;
esac
case "${_cputype}" in
i386|i486|i686|i786|x86) _cputype=i686 ;;
arm64|aarch64) _cputype=aarch64 ;;
x86_64|x86-64|x64|amd64) _cputype=x86_64 ;;
*) err "unknown CPU type: ${_cputype}" ;;
esac
if [ "${_ostype}" = unknown-linux-musl ] && [ "${_bitness}" -eq 32 ]; then
case "${_cputype}" in
x86_64) _cputype=i686 ;;
aarch64) _cputype=armv7 ;;
*) ;;
esac
fi
_arch="${_cputype}-${_ostype}"
echo "${_arch}"
}
get_bitness() {
need_cmd head
local _current_exe_head
_current_exe_head=$(head -c 5 /proc/self/exe)
if [ "${_current_exe_head}" = "$(printf '\177ELF\001')" ]; then
echo 32
elif [ "${_current_exe_head}" = "$(printf '\177ELF\002')" ]; then
echo 64
else
err "unknown platform bitness"
fi
}
check_proc() {
if ! test -L /proc/self/exe; then
err "unable to find /proc/self/exe. Is /proc mounted?"
fi
}
need_cmd() {
if ! check_cmd "$1"; then
err "need '$1' (command not found)"
fi
}
check_cmd() {
command -v -- "$1" >/dev/null 2>&1
}
ensure() {
if ! "$@"; then
err "command failed: $*"
fi
}
assert_nz() {
if [ -z "$1" ]; then
err "found empty string: $2"
fi
}
err() {
echo "Error: $1" >&2
exit 1
}
{ main "$@" || exit 1; }