minecraft-pi-reborn/scripts/install-dependencies.sh

77 lines
1.8 KiB
Bash
Raw Normal View History

2021-06-17 21:32:24 +00:00
#!/bin/sh
set -e
# This Script Assumes An x86_64 Host
if [ "$(uname -m)" != "x86_64" ]; then
echo 'Invalid Build Architecture'
exit 1
fi
# Add ARM Repository
if [ ! -z "${ARM_PACKAGES_SUPPORTED}" ]; then
sudo dpkg --add-architecture armhf
2021-06-24 16:40:34 +00:00
sudo dpkg --add-architecture arm64
2021-06-17 21:32:24 +00:00
fi
# Update APT
sudo apt-get update
sudo apt-get dist-upgrade -y
2022-03-09 23:47:31 +00:00
# Install Everything In One Go
PKG_QUEUE=''
queue_pkg() {
PKG_QUEUE="${PKG_QUEUE} $@"
}
2021-06-17 21:32:24 +00:00
# Install
2022-03-09 23:47:31 +00:00
queue_pkg \
2021-06-17 21:32:24 +00:00
git \
cmake \
2022-03-07 01:13:41 +00:00
ninja-build \
2021-06-17 21:32:24 +00:00
libglfw3 libglfw3-dev \
libfreeimage3 libfreeimage-dev \
crossbuild-essential-armhf \
2021-11-12 03:27:10 +00:00
gcc g++ \
2022-03-09 23:47:31 +00:00
nodejs \
2021-09-12 03:18:12 +00:00
libopenal-dev \
2021-12-18 21:29:35 +00:00
qemu-user
2021-06-17 21:32:24 +00:00
# Install ARM Dependencies
if [ ! -z "${ARM_PACKAGES_SUPPORTED}" ]; then
2022-03-09 23:47:31 +00:00
queue_pkg \
2021-06-17 21:32:24 +00:00
libglfw3:armhf libglfw3-dev:armhf \
2021-06-24 16:40:34 +00:00
libfreeimage3:armhf \
2021-09-12 03:18:12 +00:00
libopenal-dev:armhf \
2021-06-24 16:40:34 +00:00
libglfw3:arm64 libglfw3-dev:arm64 \
2021-09-12 03:18:12 +00:00
libfreeimage3:arm64 \
2021-11-12 03:27:10 +00:00
libopenal-dev:arm64 \
crossbuild-essential-arm64
2021-06-17 21:32:24 +00:00
fi
2022-03-09 23:47:31 +00:00
# Install appimagetool Dependencies
queue_pkg \
python3-pip \
python3-setuptools \
patchelf \
desktop-file-utils \
libgdk-pixbuf2.0-dev \
fakeroot \
strace \
fuse \
sed
# Install Queue
sudo apt-get install --no-install-recommends -y ${PKG_QUEUE}
# Download appimagetool
sudo mkdir -p /opt
sudo wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O /opt/appimagetool
# Workaround AppImage Issues With Docker
cd /opt; sudo chmod +x ./appimagetool; sed -i '0,/AI\x02/{s|AI\x02|\x00\x00\x00|}' ./appimagetool; sudo ./appimagetool --appimage-extract
sudo mv /opt/squashfs-root /opt/appimagetool.AppDir
sudo ln -s /opt/appimagetool.AppDir/AppRun /usr/local/bin/appimagetool
# Install appimage-builder
sudo pip3 install git+https://github.com/AppImageCrafters/appimage-builder.git