Skip to content

Commit

Permalink
Fix appimage building
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Dec 17, 2024
1 parent b548d3a commit 6bcbb59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build_appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi
sudo apt install -y libpng-dev libxft-dev libfontconfig1-dev libfreetype6-dev

wget -O appimage-builder https://github.com/AppImageCrafters/appimage-builder/releases/download/v1.1.0/appimage-builder-1.1.0-x86_64.AppImage
wget -O appimagetool https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-x86_64.AppImage
wget -O appimagetool https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage
chmod +x ./appimage-builder
chmod +x ./appimagetool

Expand All @@ -26,7 +26,7 @@ mkdir -p AppDir/usr/share/metainfo
cp ./sticker-convert.appdata.xml AppDir/usr/share/metainfo

# Bundling into appimage
wget https://github.com/AppImage/AppImageKit/releases/download/13/runtime-${SC_COMPILE_ARCH}
wget https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-${SC_COMPILE_ARCH}
if [ ${SC_COMPILE_ARCH} = "aarch64" ]; then
ARCH="arm_aarch64"
else
Expand Down

0 comments on commit 6bcbb59

Please sign in to comment.