File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,14 @@ cp -P -r /usr/lib/x86_64-linux-gnu/nss ./usr/lib/
7979
8080# Use linuxdeployqt to deploy
8181cd /build
82- wget --ca-directory=/etc/ssl/certs -c " https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
83- chmod a+x linuxdeployqt* .AppImage
84- ./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract
85- rm ./linuxdeployqt-continuous-x86_64.AppImage
82+ # Use version '8' of linuxdeployqt, the latest version break libsecret support
83+ # See https://github.com/probonopd/linuxdeployqt/issues/544
84+ # LINUXDEPLOYQT_VERSION="continuous"
85+ LINUXDEPLOYQT_VERSION=" 8"
86+ wget -O linuxdeployqt.AppImage --ca-directory=/etc/ssl/certs -c " https://github.com/probonopd/linuxdeployqt/releases/download/${LINUXDEPLOYQT_VERSION} /linuxdeployqt-continuous-x86_64.AppImage"
87+ chmod a+x linuxdeployqt.AppImage
88+ ./linuxdeployqt.AppImage --appimage-extract
89+ rm ./linuxdeployqt.AppImage
8690unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
8791export LD_LIBRARY_PATH=/app/usr/lib/
8892./squashfs-root/AppRun ${DESKTOP_FILE} -bundle-non-qt-libs -qmldir=/build/desktop/src/gui
You can’t perform that action at this time.
0 commit comments