Add blockpi app

pull/634/head
Botspot 3 years ago
parent 5da4933b04
commit 4002c0e879

@ -0,0 +1 @@
Botspot made the app's install scripts

@ -0,0 +1,5 @@
Create python programs using drag-n-drop blocks
A visual programming editor app for Raspberry Pi, built on Google Blockly, made for RPi users or kids to learn coding.
To run: Menu -> Programming -> BlockPi
To run in a terminal: /opt/BlockPi/blockpi

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

@ -0,0 +1,15 @@
#!/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
}
wget -O ~/blockpi.deb https://github.com/alienzhangyw/BlockPi/releases/download/v1.2.0/blockpi_1.2.0_armv7l.deb || error 'Failed to download deb file!'
# Get dependencies
sudo apt install -fy ~/blockpi.deb || error "Failed to install blockpi.deb"
rm -f ~/blockpi.deb

@ -0,0 +1,15 @@
#!/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
}
wget -O ~/blockpi.deb https://github.com/alienzhangyw/BlockPi/releases/download/v1.2.0/blockpi_1.2.0_arm64.deb || error 'Failed to download deb file!'
# Get dependencies
sudo apt install -fy ~/blockpi.deb || error "Failed to install blockpi.deb"
rm -f ~/blockpi.deb

@ -0,0 +1,11 @@
#!/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 blockpi

@ -0,0 +1 @@
https://github.com/alienzhangyw/BlockPi
Loading…
Cancel
Save