-
Notifications
You must be signed in to change notification settings - Fork 3
/
install.sh
124 lines (109 loc) · 3.05 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
#!/bin/sh
set -e
owner="cask-pkg"
repo="cask.rs"
exe_name="cask"
githubUrl="https://github.com"
version="" # auto install the latest version
get_arch() {
# darwin/amd64: Darwin axetroydeMacBook-Air.local 20.5.0 Darwin Kernel Version 20.5.0: Sat May 8 05:10:33 PDT 2021; root:xnu-7195.121.3~9/RELEASE_X86_64 x86_64
# linux/amd64: Linux test-ubuntu1804 5.4.0-42-generic #46~18.04.1-Ubuntu SMP Fri Jul 10 07:21:24 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
a=$(uname -m)
case ${a} in
"x86_64" | "amd64" )
echo "x86_64"
;;
"aarch64" | "arm64")
echo "aarch64"
;;
"mips64el")
echo "mips64el"
;;
"mips64")
echo "mips64"
;;
*)
echo ${NIL}
;;
esac
}
get_os(){
# darwin: Darwin
# linux: Linux
os=$(uname -s | awk '{print tolower($0)}')
echo $os
}
get_vendor(){
# darwin: Darwin
os=$(get_os)
case ${os} in
"darwin" )
echo "apple"
;;
*)
echo "unknown"
;;
esac
}
get_abi(){
vendor=$(get_vendor)
case ${vendor} in
"apple" )
echo ""
;;
*)
ldd=$(cat '/usr/bin/ldd')
if [ "$ldd" == *"musl"* ]; then
echo "-musl"
else
echo "-gnu"
fi
;;
esac
}
function get_latest_release() {
curl --silent "https://api.github.com/repos/$1/$2/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'
}
# parse flag
for i in "$@"; do
case $i in
-v=*|--version=*)
version="${i#*=}"
shift # past argument=value
;;
*)
# unknown option
;;
esac
done
downloadFolder="${HOME}/Downloads"
mkdir -p ${downloadFolder} # make sure download folder exists
os=$(get_os)
arch=$(get_arch)
vendor=$(get_vendor)
abi=$(get_abi)
file_name="${exe_name}-${arch}-${vendor}-${os}${abi}.tar.gz" # the file name should be download
downloaded_file="${downloadFolder}/${file_name}" # the file path should be download
executable_folder="/usr/local/bin" # Eventually, the executable file will be placed here
# if version is empty
if [ -z "$version" ]; then
version=$(get_latest_release $owner $repo)
fi
asset_uri="${githubUrl}/${owner}/${repo}/releases/download/${version}/${file_name}"
echo "[1/3] Download ${asset_uri} to ${downloadFolder}"
rm -f ${downloaded_file}
curl --fail --location --output "${downloaded_file}" "${asset_uri}"
echo "[2/3] Install ${exe_name} to the ${executable_folder}"
tar -xz -f ${downloaded_file} -C ${executable_folder}
exe=${executable_folder}/${exe_name}
chmod +x ${exe}
echo "[3/3] Set environment variables"
echo "${exe_name} was installed successfully to ${exe}"
if command -v $exe_name --version >/dev/null; then
echo "Run '$exe_name --help' to get started"
else
echo "Manually add the directory to your \$HOME/.bash_profile (or similar)"
echo " export PATH=${executable_folder}:\$PATH"
echo "Run '$exe_name --help' to get started"
fi
exit 0