From ff50e315a12ccb1a69433dd1a9129ec3c5c5c00c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20L=C3=B3pez=20Zubieta?= Date: Tue, 13 Feb 2018 18:58:24 -0600 Subject: [PATCH] Use appimagetool to create the final appimage instead of linuxdeployqt --- build_scripts/appimage.run.linuxdeployqt.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/build_scripts/appimage.run.linuxdeployqt.sh b/build_scripts/appimage.run.linuxdeployqt.sh index 1092abfc..9bed7539 100755 --- a/build_scripts/appimage.run.linuxdeployqt.sh +++ b/build_scripts/appimage.run.linuxdeployqt.sh @@ -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 $? \ No newline at end of file