-
-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathinstall.sh
executable file
·115 lines (95 loc) · 2.91 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
#!/bin/sh
set -e
SOURCE_REPO="deb [signed-by=/usr/share/keyrings/raspotify_key.asc] https://dtcooper.github.io/raspotify raspotify main"
ERROR_MESG="Please make sure you are running a compatible armhf (ARMv7), arm64, or amd64 Debian based OS."
LIBC_MIN_VER="2.31"
CUTILS_MIN_VER="8.32"
SYSTEMD_MIN_VER="247.3"
HELPER_MIN_VER="1.6"
LIBASOUND_MIN_VER="1.2.4"
ALSA_UTILS_VER="1.2.4"
LIBPULSE_MIN_VER="14.2"
SUDO="sudo"
APT="apt"
REQ_PACKAGES="libc6 coreutils systemd init-system-helpers libasound2 alsa-utils libpulse0"
PACKAGES_TO_INSTALL=
MIN_NOT_MET=
if ! which apt >/dev/null; then
APT="apt-get"
if ! which apt-get >/dev/null; then
echo "\nUnspported OS:\n"
echo "$ERROR_MESG"
exit 1
fi
fi
if uname -a | grep -F -ivq -e armv7 -e aarch64 -e x86_64; then
echo "\nUnspported architecture:\n"
echo "$ERROR_MESG"
echo "\nSupport for ARMv6 (Pi v1 and Pi Zero v1.x) has been dropped."
echo "0.31.8.1 was the last version to be built with ARMv6 support."
echo "\nhttps://github.com/dtcooper/raspotify/releases/tag/0.31.8.1\n"
echo "You can install and run that version on an ARMv6 device,"
echo "but you will never get updates and doing so is completely unsupported."
exit 1
fi
if ! which sudo >/dev/null; then
SUDO=""
if [ "$(id -u)" -ne 0 ]; then
echo "\nInsufficient privileges:\n"
echo "Please run this script as root."
exit 1
fi
fi
for package in $REQ_PACKAGES; do
if ! dpkg-query -W -f='${db:Status-Status}\n' "$package" 2>/dev/null | grep -q '^installed$'; then
PACKAGES_TO_INSTALL="$PACKAGES_TO_INSTALL $package"
fi
done
if [ "$PACKAGES_TO_INSTALL" ]; then
$SUDO $APT update
$SUDO $APT -y install $PACKAGES_TO_INSTALL
fi
for package in $REQ_PACKAGES; do
case "$package" in
"libc6")
MIN_VER=$LIBC_MIN_VER
;;
"coreutils")
MIN_VER=$CUTILS_MIN_VER
;;
"systemd")
MIN_VER=$SYSTEMD_MIN_VER
;;
"libasound2")
MIN_VER=$LIBASOUND_MIN_VER
;;
"alsa-utils")
MIN_VER=$ALSA_UTILS_VER
;;
"libpulse0")
MIN_VER=$LIBPULSE_MIN_VER
;;
"init-system-helpers")
MIN_VER=$HELPER_MIN_VER
;;
esac
VER="$(dpkg-query -W -f='${Version}' $package)"
if eval dpkg --compare-versions "$VER" lt "$MIN_VER"; then
MIN_NOT_MET="$MIN_NOT_MET$package >= $MIN_VER is required but $VER is installed.\n"
fi
done
if [ "$MIN_NOT_MET" ]; then
echo "\nUnmet minimum required package version(s):\n"
echo "$MIN_NOT_MET"
echo "$ERROR_MESG"
exit 1
fi
curl -sSL https://dtcooper.github.io/raspotify/key.asc | $SUDO tee /usr/share/keyrings/raspotify_key.asc >/dev/null
$SUDO chmod 644 /usr/share/keyrings/raspotify_key.asc
echo "$SOURCE_REPO" | $SUDO tee /etc/apt/sources.list.d/raspotify.list
$SUDO $APT update
$SUDO $APT -y install raspotify
echo "\nThanks for installing Raspotify! Don't forget to checkout the wiki for tips, tricks and configuration info!:\n"
echo "https://github.com/dtcooper/raspotify/wiki"
echo "\nAnd if you're feeling generous you could buy me a RedBull:\n"
echo "https://github.com/sponsors/JasonLG1979"