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.
46 lines
3.1 KiB
Bash
46 lines
3.1 KiB
Bash
#!/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
|
|
}
|
|
|
|
function check-armhf() {
|
|
ARMHF="$(dpkg --print-foreign-architectures | grep "armhf")"
|
|
}
|
|
|
|
|
|
#add armhf architecture (multiarch)
|
|
check-armhf
|
|
if [[ "$ARMHF" == *"armhf"* ]]; then
|
|
echo "armhf arcitecture already added..."
|
|
else
|
|
sudo dpkg --add-architecture armhf
|
|
check-armhf
|
|
if [[ "$ARMHF" != *"armhf"* ]]; then
|
|
error "armhf architecture should be added by now, but it isn't!"
|
|
fi
|
|
fi
|
|
|
|
#install box86 dependencies
|
|
CODENAME="$(lsb_release -cs)"
|
|
if [[ "${CODENAME}" = "focal" || "${CODENAME}" = "buster" ]]; then
|
|
"${DIRECTORY}/pkg-install" "libraspberrypi0:armhf libssh-gcrypt-4:armhf libgssapi-krb5-2:armhf libkrb5-3:armhf libssl1.1:armhf libcups2:armhf libsdl1.2debian:armhf libopusfile0:armhf libc6:armhf libx11-6:armhf libgdk-pixbuf2.0-0:armhf libgtk2.0-0:armhf libstdc++6:armhf libsdl2-2.0-0:armhf mesa-va-drivers:armhf libsdl1.2-dev:armhf libsdl-mixer1.2:armhf libpng16-16:armhf libcal3d12v5:armhf libsdl2-net-2.0-0:armhf libopenal1:armhf libsdl2-image-2.0-0:armhf libvorbis-dev:armhf libcurl4:armhf osspd:armhf pulseaudio:armhf libjpeg62:armhf libudev1:armhf libgl1-mesa-dev:armhf libsnappy1v5:armhf libx11-dev:armhf libsmpeg0:armhf libboost-filesystem1.67.0:armhf libboost-program-options1.67.0:armhf libavcodec58:armhf libavformat58:armhf libswscale5:armhf libmyguiengine3debian1v5:armhf libboost-iostreams1.67.0:armhf libsdl2-mixer-2.0-0:armhf" "$(dirname "$0")" || exit 1
|
|
elif [[ "${CODENAME}" = "groovy" ]]; then
|
|
"${DIRECTORY}/pkg-install" "libraspberrypi0:armhf libssh-gcrypt-4:armhf libgssapi-krb5-2:armhf libkrb5-3:armhf libssl1.1:armhf libcups2:armhf libsdl1.2debian:armhf libopusfile0:armhf libc6:armhf libx11-6:armhf libgdk-pixbuf2.0-0:armhf libgtk2.0-0:armhf libstdc++6:armhf libsdl2-2.0-0:armhf mesa-va-drivers:armhf libsdl1.2-dev:armhf libsdl-mixer1.2:armhf libpng16-16:armhf libcal3d12v5:armhf libsdl2-net-2.0-0:armhf libopenal1:armhf libsdl2-image-2.0-0:armhf libvorbis-dev:armhf libcurl4:armhf osspd:armhf pulseaudio:armhf libjpeg62:armhf libudev1:armhf libgl1-mesa-dev:armhf libsnappy1v5:armhf libx11-dev:armhf libsmpeg0:armhf libboost-filesystem1.71.0:armhf libboost-program-options1.71.0:armhf libavcodec58:armhf libavformat58:armhf libswscale5:armhf libmyguiengine3debian1v5:armhf libboost-iostreams1.71.0:armhf libsdl2-mixer-2.0-0:armhf" "$(dirname "$0")" || exit 1
|
|
else
|
|
error "this script can't run on your OS! it HAS to be Debian buster or Ubuntu 20.04 or 20.10"
|
|
fi
|
|
|
|
sudo rm /etc/apt/sources.list.d/box86.list &>/dev/null
|
|
echo "adding box86 repo..."
|
|
sudo wget https://itai-nelken.github.io/weekly-box86-debs/debian/box86.list -O /etc/apt/sources.list.d/box86.list || error "Failed to download /etc/apt/sources.list.d/box86.list"
|
|
echo "adding key..."
|
|
wget -qO- https://itai-nelken.github.io/weekly-box86-debs/debian/KEY.gpg | sudo apt-key add - || error "Failed to add key to box86 repo!"
|
|
echo "running 'sudo apt update'..."
|
|
sudo apt update || error "Failed to run sudo apt update"
|
|
echo "installing box86..."
|
|
sudo apt install box86 -y || error "Failed to install the box86 package"
|