-
Notifications
You must be signed in to change notification settings - Fork 8
/
install.sh
executable file
·93 lines (71 loc) · 1.9 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
#!/bin/sh
set -e
gh_repo="papirus-filezilla-themes"
gh_desc="Papirus Filezilla themes"
cat <<- EOF
ppppp ii
pp pp aaaaa ppppp rr rrr uu uu sssss
ppppp aa aa pp pp ii rrrr uu uu ssss
pp aa aa pp pp ii rr uu uu ssss
pp aaaaa ppppp ii rr uuuuu sssss
pp
pp
$gh_desc
https://github.com/PapirusDevelopmentTeam/$gh_repo
EOF
: "${DESTDIR:=/usr/share/filezilla/resources}"
: "${TAG:=master}"
: "${THEMES:=papirus epapirus papirus-dark}"
: "${uninstall:=false}"
_msg() {
echo "=>" "$@" >&2
}
_rm() {
# removes parent directories if empty
_sudo rm -rf "$1"
_sudo rmdir -p "$(dirname "$1")" 2>/dev/null || true
}
_sudo() {
if [ -w "$DESTDIR" ] || [ -w "$(dirname "$DESTDIR")" ]; then
"$@"
else
sudo "$@"
fi
}
_download() {
_msg "Getting the latest version from GitHub ..."
wget -O "$temp_file" \
"https://github.com/PapirusDevelopmentTeam/$gh_repo/archive/$TAG.tar.gz"
_msg "Unpacking archive ..."
tar -xzf "$temp_file" -C "$temp_dir"
}
_uninstall() {
for theme in "$@"; do
test -d "$DESTDIR/$theme" || continue
_msg "Deleting '$theme' ..."
_rm "$DESTDIR/$theme"
done
}
_install() {
_sudo mkdir -p "$DESTDIR"
for theme in "$@"; do
test -d "$temp_dir/$gh_repo-$TAG/$theme" || continue
_msg "Installing '$theme' ..."
_sudo cp -R "$temp_dir/$gh_repo-$TAG/$theme" "$DESTDIR"
done
}
_cleanup() {
_msg "Clearing cache ..."
rm -rf "$temp_file" "$temp_dir"
_msg "Done!"
}
trap _cleanup EXIT HUP INT TERM
temp_file="$(mktemp -u)"
temp_dir="$(mktemp -d)"
if [ "$uninstall" = "false" ]; then
_download
_uninstall $THEMES
_install $THEMES
else
_uninstall $THEMES
fi