Skip to content

Commit

Permalink
Use appimagetool to create the final appimage instead of linuxdeployqt
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis López Zubieta committed Feb 14, 2018
1 parent 306dc9a commit ff50e31
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions build_scripts/appimage.run.linuxdeployqt.sh
Expand Up @@ -11,7 +11,15 @@ export VERSION=$(git rev-parse --short HEAD)
LINUX_DEPLOY_QT_EXCLUDE_COPYRIGHTS=true ./linuxdeployqt-continuous-x86_64.AppImage \
appdir/usr/share/applications/*.desktop \
-qmldir=src/qml \
-bundle-non-qt-libs \
-appimage
-bundle-non-qt-libs

pushd appdir
rm AppRun
ln -s usr/bin/nx_software_center_wrapper.sh AppRun
popd

wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage"
chmod +x appimagetool-x86_64.AppImage
./appimagetool-x86_64.AppImage appdir

exit $?

0 comments on commit ff50e31

Please sign in to comment.