From 14a328b88007bff5ea21650fb00f6d4ead14cf02 Mon Sep 17 00:00:00 2001 From: Jerome Lamy <jerome.lamy@savoirfairelinux.com> Date: Wed, 26 Oct 2022 10:47:40 -0400 Subject: [PATCH] build: fix arch missing qt dependencies Add qt6 missing dependencies to perform build on arch. Remove non-existent qt6 library not part of the arch repo. Change-Id: Iebec9927b8e4e536bb5115dcc579b91b55a3fe13 --- build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 26d55555..88698a27 100755 --- a/build.py +++ b/build.py @@ -178,7 +178,8 @@ PACMAN_CLIENT_DEPENDENCIES = [ # lrc 'qt6-base', # client-qt - 'qt6-declarative', 'qt6-graphicaleffects', 'qt6-multimedia', + 'qt6-declarative', 'qt6-5compat' , 'qt6-multimedia', + 'qt6-networkauth', 'qt6-shadertools', 'qt6-svg', 'qt6-tools', 'qrencode', 'libnm' ] -- GitLab