forked from ordinals/ord
-
Notifications
You must be signed in to change notification settings - Fork 29
/
install.sh
executable file
Β·144 lines (119 loc) Β· 2.51 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
#!/usr/bin/env bash
set -euo pipefail
if [ ! -z ${GITHUB_ACTIONS-} ]; then
set -x
fi
help() {
cat <<'EOF'
Install a binary release of ord hosted on GitHub
USAGE:
install [options]
FLAGS:
-h, --help Display this message
-f, --force Force overwriting an existing binary
OPTIONS:
--tag TAG Tag (version) of the crate to install, defaults to latest release
--to LOCATION Where to install the binary [default: ~/bin]
--target TARGET
EOF
}
git=apezord/ord-dogecoin
crate=ord
url=https://github.com/apezord/ord-dogecoin
releases=$url/releases
say() {
echo "install: $@"
}
say_err() {
say "$@" >&2
}
err() {
if [ ! -z ${td-} ]; then
rm -rf $td
fi
say_err "error: $@"
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
--force | -f)
force=true
;;
--help | -h)
help
exit 0
;;
--tag)
tag=$2
shift
;;
--target)
target=$2
shift
;;
--to)
dest=$2
shift
;;
*)
;;
esac
shift
done
# Dependencies
need curl
need install
need mkdir
need mktemp
need tar
# Optional dependencies
if [ -z ${tag-} ]; then
need cut
need rev
fi
if [ -z ${dest-} ]; then
dest="$HOME/bin"
fi
if [ -z ${tag-} ]; then
tag=$(curl --proto =https --tlsv1.2 -sSf https://api.github.com/repos/apezord/ord-dogecoin/releases/latest |
grep tag_name |
cut -d'"' -f4
)
fi
if [ -z ${target-} ]; then
uname_target=`uname -m`-`uname -s`
case $uname_target in
arm64-Darwin) target=aarch64-apple-darwin;;
x86_64-Darwin) target=x86_64-apple-darwin;;
x86_64-Linux) target=x86_64-unknown-linux-gnu;;
*)
err 'Could not determine target from output of `uname -m`-`uname -s`, please use `--target`:' $uname_target
err 'Please try building from source: https://github.com/apezord/ord-dogecoin#building'
;;
esac
fi
archive="$releases/download/$tag/$crate-$tag-$target.tar.gz"
say_err "Repository: $url"
say_err "Crate: $crate"
say_err "Tag: $tag"
say_err "Target: $target"
say_err "Destination: $dest"
say_err "Archive: $archive"
td=$(mktemp -d || mktemp -d -t tmp)
curl --proto =https --tlsv1.2 -sSfL $archive | tar -C $td -xz
for f in $(ls $td); do
test -x $td/$f || continue
if [ -e "$dest/$f" ] && [ $force = false ]; then
err "$f already exists in $dest"
else
mkdir -p $dest
install -m 755 $td/$f $dest
fi
done
rm -rf $td