Linux build needs libdbus for the keyring Secret Service backend

The sync Secret Service backend links system libdbus via libdbus-sys, so
the Linux CI job installs libdbus-1-dev + pkg-config and the PKGBUILD
declares dbus (build + runtime). Caught by the linux-cli CI job.
This commit is contained in:
Anthony
2026-05-29 15:50:58 +02:00
parent 3a2119bcb9
commit 11ffea626e
3 changed files with 10 additions and 6 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ pkgdesc="Local IMAP/SMTP bridge for Tuta encrypted email (headless CLI/daemon)"
arch=('x86_64' 'aarch64')
url="https://github.com/spartanz51/tutabridge"
license=('GPL-3.0-or-later')
depends=('gcc-libs')
makedepends=('rust' 'cargo' 'git' 'cmake' 'nasm')
depends=('gcc-libs' 'dbus')
makedepends=('rust' 'cargo' 'git' 'cmake' 'nasm' 'dbus' 'pkgconf')
optdepends=('gnome-keyring: persist the Tuta session across reboots (Secret Service)'
'kwallet: alternative Secret Service provider')
provides=('tutabridge')