add Sonic Pi 3.2 app

pull/20/head
Botspot 5 years ago
parent c0c0a356b3
commit 7b0bbca9e9

@ -0,0 +1 @@
Write code to make music. Latest version of Sonic Pi.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

@ -0,0 +1,18 @@
#!/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!"
sudo apt install -y --no-install-recommends sonic-pi_3.2.2_4_armhf.deb || error "Failed to install Sonic Pi package!"
rm -f sonic-pi_3.2.2_4_armhf.deb
exit 0

@ -0,0 +1,14 @@
#!/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
}
sudo apt purge -y sonic-pi
#if your app installs any packages, keep this command here so those packages will be removed.
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1

@ -0,0 +1 @@
https://sonic-pi.net/#rp
Loading…
Cancel
Save