Skip to content

Commit

Permalink
Revert "fix: build appimage with all libs (#740)"
Browse files Browse the repository at this point in the history
This reverts commit 7b5bc19.
  • Loading branch information
variar committed Nov 23, 2024
1 parent 13778ef commit 3f0bc33
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packaging/linux/appimage/generate_appimage.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/bin/bash

DESTDIR=$(readlink -f appdir) ninja install
wget -c https://github.com/$(wget -q https://github.com/probonopd/go-appimage/releases/expanded_assets/continuous -O - | grep "appimagetool-.*-x86_64.AppImage" | head -n 1 | cut -d '"' -f 2)
chmod +x appimagetool-*.AppImage
VERSION=$KLOGG_VERSION ./appimagetool-*.AppImage -s deploy appdir/usr/share/applications/*.desktop # Bundle EVERYTHING
wget -c -q "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
chmod a+x linuxdeployqt-continuous-x86_64.AppImage
VERSION=$KLOGG_VERSION ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -bundle-non-qt-libs
VERSION=$KLOGG_VERSION ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage
mkdir ./packages
cp ./klogg-$KLOGG_VERSION-x86_64.AppImage ./packages/klogg-$KLOGG_VERSION-x86_64.AppImage

0 comments on commit 3f0bc33

Please sign in to comment.