Add Minecraft Pi app

pull/239/head
Botspot 4 years ago
parent f74bedece9
commit 4d2bb0bc0a

@ -0,0 +1,2 @@
TheBrokenRail and Botspot on issue #144
@pi-dev500 on issue #237

@ -0,0 +1 @@
A modded version of Minecraft: Pi Edition.

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@ -0,0 +1,18 @@
#!/bin/bash
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
STORAGE="$(dirname "$0")"
function error {
echo -e "\\e[91m$1\\e[39m"
exit 1
}
if [[ "$(lsb_release -cs)" != "buster" && "$(lsb_release -cs)" != "bullseye" && "$(lsb_release -cs)" != "sid" ]]; then
error 'Unsupported Debian Version'
fi
curl -s https://packagecloud.io/install/repositories/Alvarito050506/mcpi-devs/script.deb.sh | sudo bash || error "mcpi install script failed."
# Get dependencies
sudo apt install mcpil minecraft-pi || error "error on sudo apt install mcpil"

@ -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-get remove -y minecraft-pi-native
sudo apt-get autoremove -y
Loading…
Cancel
Save