mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-22 10:05:10 +00:00
51b956ac7f
Co-authored-by: reggie <reggie@latte.to>
30 lines
809 B
Bash
Executable file
30 lines
809 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
ROOTDIR="$(readlink -f "$(dirname "$0")")"/../../../
|
|
cd "$ROOTDIR"
|
|
|
|
BUILDDIR=${BUILDDIR:-publish}
|
|
OUTDIR=${OUTDIR:-publish_appimage}
|
|
UFLAG=${UFLAG:-"gh-releases-zsync|ryujinx-mirror|ryujinx|latest|*-x64.AppImage.zsync"}
|
|
|
|
rm -rf AppDir
|
|
mkdir -p AppDir/usr/bin
|
|
|
|
cp distribution/linux/Ryujinx.desktop AppDir/Ryujinx.desktop
|
|
cp distribution/linux/appimage/AppRun AppDir/AppRun
|
|
cp distribution/misc/Logo.svg AppDir/Ryujinx.svg
|
|
|
|
cp -r "$BUILDDIR"/* AppDir/usr/bin/
|
|
|
|
# Ensure necessary bins are set as executable
|
|
chmod +x AppDir/AppRun AppDir/usr/bin/Ryujinx*
|
|
|
|
mkdir -p "$OUTDIR"
|
|
|
|
appimagetool --comp zstd --mksquashfs-opt -Xcompression-level --mksquashfs-opt 21 \
|
|
-u "$UFLAG" \
|
|
AppDir "$OUTDIR"/Ryujinx.AppImage
|
|
|
|
# Move zsync file needed for delta updates
|
|
mv ./*.AppImage.zsync "$OUTDIR"
|