forked from lotabout/skim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install
executable file
·69 lines (57 loc) · 1.52 KB
/
install
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
#!/usr/bin/env bash
# This script trys to download the correct version of binary from github.
# You can download it manually and put it(i.e. `sk`) under `bin/`.
#
# If you know rust or have rust installed, you can build it with
# `cargo build --release`
# Note that nightly rust is required.
set -u
version="0.8.0"
cd "$(dirname "${BASH_SOURCE[0]}")"
skim_base="$(pwd)"
check_binary() {
echo -n " - Checking skim executable ... "
local output
output=$("$skim_base"/bin/sk --version 2>&1)
if [ $? -ne 0 ]; then
echo "Error: $output"
elif [ "$version" != "$output" ]; then
echo "$output != $version"
else
echo "$output"
return 0
fi
rm -f "$skim_base"/bin/sk
return 1
}
# download version
download() {
echo "Downloading bin/sk ..."
mkdir -p "$skim_base"/bin && cd "$skim_base"/bin
if [ $? -ne 0 ]; then
binary_error="Failed to create bin directory"
return
fi
check_binary
local url=https://github.com/lotabout/skim/releases/download/v$version/${1}.tar.gz
echo "Downloading: $url"
if command -v curl > /dev/null; then
curl -fL $url | tar xz
elif command -v wget > /dev/null; then
wget -O - $url | tar xz
else
binary_error="curl or wget not found"
return
fi
if [ ! -f $1 ]; then
binary_error="Failed to download ${1}"
return
fi
}
archi=$(uname -sm)
case "$archi" in
Darwin\ x86_64) download skim-v$version-${binary_arch:-x86_64}-apple-darwin;;
Linux\ x86_64) download skim-v$version-${binary_arch:-x86_64}-unknown-linux-gnu;;
*) ;;
esac
echo "Done :)"