We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65bd6fc commit 7c1b396Copy full SHA for 7c1b396
1 file changed
make-appimage.sh
@@ -12,13 +12,15 @@ export ICON=/usr/share/pixmaps/anki.png
12
export DESKTOP=/usr/share/applications/anki.desktop
13
export DEPLOY_SYS_PYTHON=1
14
export DEPLOY_QT_WEB_ENGINE=1
15
-export DEPLOY_QT=1
16
-export QT_DIR=qt6
17
export DEPLOY_OPENGL=1
18
export DEPLOY_VULKAN=1
19
20
# Deploy dependencies
21
-quick-sharun /usr/bin/anki*
+# Qt libs have to be passed manually due to the app being a python script
+quick-sharun \
+ /usr/bin/anki* \
22
+ /usr/lib/libQt6Core.so* \
23
+ /usr/lib/libQt6Network.so*
24
25
# Additional changes can be done in between here
26
0 commit comments