Update Dependency Installation
This commit is contained in:
parent
daccf65361
commit
a8ff58f0c4
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,5 +9,6 @@ appimage-builder-cache
|
|||||||
appimage-build
|
appimage-build
|
||||||
AppDir
|
AppDir
|
||||||
*.zsync
|
*.zsync
|
||||||
|
*.AppImage
|
||||||
core*
|
core*
|
||||||
qemu_*
|
qemu_*
|
||||||
|
2
dependencies/glfw/src
vendored
2
dependencies/glfw/src
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 62e175ef9fae75335575964c845a302447c012c7
|
Subproject commit d3ede7b6847b66cf30b067214b2b4b126d4c729b
|
@ -8,5 +8,5 @@ ADD ./scripts/install-dependencies.sh /
|
|||||||
RUN \
|
RUN \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install --no-install-recommends -y sudo && \
|
apt-get install --no-install-recommends -y sudo && \
|
||||||
/install-dependencies.sh && \
|
/install-dependencies.sh amd64 armhf arm64 && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
@ -2,17 +2,12 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# This Script Assumes An x86_64 Host
|
# Main Script
|
||||||
if [ "$(uname -m)" != "x86_64" ]; then
|
run() {
|
||||||
echo 'Invalid Build Architecture'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Add ARM Repository
|
# Add ARM Repository
|
||||||
if [ ! -z "${ARM_PACKAGES_SUPPORTED}" ]; then
|
for arch in "$@"; do
|
||||||
sudo dpkg --add-architecture armhf
|
sudo dpkg --add-architecture "${arch}"
|
||||||
sudo dpkg --add-architecture arm64
|
done
|
||||||
fi
|
|
||||||
|
|
||||||
# Update APT
|
# Update APT
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
@ -24,66 +19,53 @@ queue_pkg() {
|
|||||||
PKG_QUEUE="${PKG_QUEUE} $@"
|
PKG_QUEUE="${PKG_QUEUE} $@"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Build Tools
|
# Build System
|
||||||
queue_pkg \
|
queue_pkg \
|
||||||
git \
|
git \
|
||||||
cmake \
|
cmake \
|
||||||
ninja-build \
|
ninja-build \
|
||||||
crossbuild-essential-armhf \
|
|
||||||
gcc g++ \
|
|
||||||
nodejs
|
nodejs
|
||||||
|
|
||||||
# Dependencies
|
# Host Dependencies Needed For Compile
|
||||||
|
queue_pkg \
|
||||||
|
libwayland-bin \
|
||||||
|
libfreeimage-dev
|
||||||
|
|
||||||
|
# Host Dependencies Needed For Running
|
||||||
queue_pkg \
|
queue_pkg \
|
||||||
libfreeimage3 libfreeimage-dev \
|
|
||||||
libopenal-dev \
|
|
||||||
qemu-user \
|
qemu-user \
|
||||||
patchelf
|
patchelf
|
||||||
|
|
||||||
# GLFW Dependencies
|
# Architecture-Specific Dependencies
|
||||||
|
architecture_specific_pkg() {
|
||||||
|
# Compiler
|
||||||
queue_pkg \
|
queue_pkg \
|
||||||
libwayland-dev \
|
crossbuild-essential-$1
|
||||||
libxkbcommon-dev \
|
|
||||||
wayland-protocols \
|
|
||||||
libx11-dev \
|
|
||||||
libxcursor-dev \
|
|
||||||
libxi-dev \
|
|
||||||
libxinerama-dev \
|
|
||||||
libxrandr-dev \
|
|
||||||
libxext-dev
|
|
||||||
|
|
||||||
# Zenity Dependencies
|
|
||||||
queue_pkg \
|
|
||||||
libgtk-3-dev \
|
|
||||||
libglib2.0-dev
|
|
||||||
|
|
||||||
# ARM Packages
|
|
||||||
if [ ! -z "${ARM_PACKAGES_SUPPORTED}" ]; then
|
|
||||||
# Build Tools
|
|
||||||
queue_pkg \
|
|
||||||
crossbuild-essential-arm64
|
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
queue_pkg \
|
queue_pkg \
|
||||||
libfreeimage3:armhf libfreeimage3:arm64 \
|
libfreeimage3:$1 \
|
||||||
libopenal-dev:armhf libopenal-dev:arm64
|
libopenal-dev:$1
|
||||||
|
|
||||||
# GLFW Dependencies
|
# GLFW Dependencies
|
||||||
queue_pkg \
|
queue_pkg \
|
||||||
libwayland-dev:armhf libwayland-dev:arm64 \
|
libwayland-dev:$1 \
|
||||||
libxkbcommon-dev:armhf libxkbcommon-dev:arm64 \
|
libxkbcommon-dev:$1 \
|
||||||
libx11-dev:armhf libx11-dev:arm64 \
|
libx11-dev:$1 \
|
||||||
libxcursor-dev:armhf libxcursor-dev:arm64 \
|
libxcursor-dev:$1 \
|
||||||
libxi-dev:armhf libxi-dev:arm64 \
|
libxi-dev:$1 \
|
||||||
libxinerama-dev:armhf libxinerama-dev:arm64 \
|
libxinerama-dev:$1 \
|
||||||
libxrandr-dev:armhf libxrandr-dev:arm64 \
|
libxrandr-dev:$1 \
|
||||||
libxext-dev:armhf libxext-dev:arm64
|
libxext-dev:$1
|
||||||
|
|
||||||
# Zenity Dependencies
|
# Zenity Dependencies
|
||||||
queue_pkg \
|
queue_pkg \
|
||||||
libgtk-3-dev:armhf libgtk-3-dev:arm64 \
|
libgtk-3-dev:$1 \
|
||||||
libglib2.0-dev:armhf libglib2.0-dev:arm64
|
libglib2.0-dev:$1
|
||||||
fi
|
}
|
||||||
|
for arch in "$@"; do
|
||||||
|
architecture_specific_pkg "${arch}"
|
||||||
|
done
|
||||||
|
|
||||||
# Install appimagetool & appimage-builder Dependencies
|
# Install appimagetool & appimage-builder Dependencies
|
||||||
queue_pkg \
|
queue_pkg \
|
||||||
@ -103,19 +85,13 @@ queue_pkg \
|
|||||||
# Install Queue
|
# Install Queue
|
||||||
sudo apt-get install --no-install-recommends -y ${PKG_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
|
|
||||||
sudo chmod +x /opt/appimagetool
|
|
||||||
# Workaround AppImage Issues With Docker
|
|
||||||
cd /opt
|
|
||||||
sudo sed -i '0,/AI\x02/{s|AI\x02|\x00\x00\x00|}' ./appimagetool
|
|
||||||
sudo rm -rf /opt/squashfs-root /opt/appimagetool.AppDir
|
|
||||||
sudo ./appimagetool --appimage-extract
|
|
||||||
sudo rm -f ./appimagetool
|
|
||||||
sudo mv /opt/squashfs-root /opt/appimagetool.AppDir
|
|
||||||
sudo rm -f /usr/local/bin/appimagetool
|
|
||||||
sudo ln -s /opt/appimagetool.AppDir/AppRun /usr/local/bin/appimagetool
|
|
||||||
|
|
||||||
# Install appimage-builder
|
# Install appimage-builder
|
||||||
sudo pip3 install 'git+https://github.com/AppImageCrafters/appimage-builder.git'
|
sudo pip3 install 'git+https://github.com/AppImageCrafters/appimage-builder.git'
|
||||||
|
}
|
||||||
|
|
||||||
|
# Run
|
||||||
|
if [ "$#" -lt 1 ]; then
|
||||||
|
run "$(dpkg-architecture -qDEB_BUILD_ARCH)"
|
||||||
|
else
|
||||||
|
run "$@"
|
||||||
|
fi
|
||||||
|
@ -9,4 +9,5 @@ set -e
|
|||||||
appimage-builder --recipe AppImageBuilder.yml
|
appimage-builder --recipe AppImageBuilder.yml
|
||||||
|
|
||||||
# Move ZSync
|
# Move ZSync
|
||||||
|
rm -f "./out/minecraft-pi-reborn-$1-latest-$2.AppImage.zsync"
|
||||||
mv "./minecraft-pi-reborn-$1-$(cat VERSION)-$2.AppImage.zsync" "./out/minecraft-pi-reborn-$1-latest-$2.AppImage.zsync"
|
mv "./minecraft-pi-reborn-$1-$(cat VERSION)-$2.AppImage.zsync" "./out/minecraft-pi-reborn-$1-latest-$2.AppImage.zsync"
|
||||||
|
Loading…
Reference in New Issue
Block a user