43 lines
1.4 KiB
Bash
Raw Normal View History

2020-09-26 20:48:46 -04:00
#!/bin/sh
set -e
# Prepare
NAME='minecraft-pi-reborn'
2023-11-24 18:37:08 -05:00
MODE="$(echo "$1" | tr '[:upper:]' '[:lower:]')"
ARCH="$(echo "$2" | tr '[:upper:]' '[:lower:]')"
2021-06-17 17:32:24 -04:00
# Build
2023-11-24 18:37:08 -05:00
./scripts/setup.sh "${MODE}" "${ARCH}" -DMCPI_IS_APPIMAGE_BUILD=ON
./scripts/build.sh "${MODE}" "${ARCH}"
# Download Runtime
mkdir -p build/appimage
2023-11-24 18:37:08 -05:00
if [ ! -f "build/appimage/runtime-${ARCH}" ]; then
case "${ARCH}" in
2022-07-07 00:37:53 -04:00
'armhf') RUNTIME_ARCH='armhf';;
'arm64') RUNTIME_ARCH='aarch64';;
'i386') RUNTIME_ARCH='i686';;
'amd64') RUNTIME_ARCH='x86_64';;
esac
2023-11-24 18:37:08 -05:00
wget -O "build/appimage/runtime-${ARCH}" "https://github.com/AppImage/AppImageKit/releases/download/continuous/runtime-${RUNTIME_ARCH}"
fi
# Package
2023-11-24 18:37:08 -05:00
case "${ARCH}" in
2022-07-07 00:37:53 -04:00
'armhf') APPIMAGE_ARCH='arm';;
'arm64') APPIMAGE_ARCH='arm_aarch64';;
'i386') APPIMAGE_ARCH='i686';;
'amd64') APPIMAGE_ARCH='x86_64';;
esac
ARCH="${APPIMAGE_ARCH}" appimagetool \
--updateinformation "zsync|https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/releases/download/latest/${NAME}-${MODE}-latest-${ARCH}.AppImage.zsync" \
2023-11-24 18:37:08 -05:00
--runtime-file "build/appimage/runtime-${ARCH}" \
--comp xz \
2023-11-24 18:37:08 -05:00
"./out/${MODE}-${ARCH}" \
"./out/${NAME}-${MODE}-$(cat VERSION)-${ARCH}.AppImage"
2022-03-09 21:23:41 -05:00
# Move ZSync
2023-11-24 18:37:08 -05:00
rm -f "./out/${NAME}-${MODE}-latest-${ARCH}.AppImage.zsync"
mv "./${NAME}-${MODE}-$(cat VERSION)-${ARCH}.AppImage.zsync" "./out/${NAME}-${MODE}-latest-${ARCH}.AppImage.zsync"