You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
517 B
Plaintext
19 lines
517 B
Plaintext
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||
|
|
||
|
function error {
|
||
|
echo -e "\\e[91m$1\\e[39m"
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
|
"${DIRECTORY}/pkg-install" "libconfig9 xcompmgr" "$(dirname "$0")" || exit 1
|
||
|
|
||
|
wget https://sonic-pi.net/files/releases/v3.2.2/sonic-pi_3.2.2_4_armhf.deb || error "Failed to download deb file!"
|
||
|
|
||
5 years ago
|
sudo apt install -y --no-install-recommends ./sonic-pi_3.2.2_4_armhf.deb || error "Failed to install Sonic Pi package!"
|
||
5 years ago
|
|
||
|
rm -f sonic-pi_3.2.2_4_armhf.deb
|
||
|
|
||
|
exit 0
|