summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorOlivier Cessenat <cessenat@gmail.com>2022-08-22 15:50:41 +0200
committerGitHub <noreply@github.com>2022-08-22 15:50:41 +0200
commita20c9b2d8ebd02d0d44f83af39ac8fc868cdba1a (patch)
tree166e10a9f3aa5b6f7dd0e79933d39693504a2075 /var
parent88a58abcf8515f059653be527d727aa901ff6d49 (diff)
downloadspack-a20c9b2d8ebd02d0d44f83af39ac8fc868cdba1a.tar.gz
spack-a20c9b2d8ebd02d0d44f83af39ac8fc868cdba1a.tar.bz2
spack-a20c9b2d8ebd02d0d44f83af39ac8fc868cdba1a.tar.xz
spack-a20c9b2d8ebd02d0d44f83af39ac8fc868cdba1a.zip
keepassxc: option autotype with pcsclite (#32288)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/keepassxc/package.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/keepassxc/package.py b/var/spack/repos/builtin/packages/keepassxc/package.py
index dac8e5c3d4..a2150088c3 100644
--- a/var/spack/repos/builtin/packages/keepassxc/package.py
+++ b/var/spack/repos/builtin/packages/keepassxc/package.py
@@ -43,6 +43,7 @@ class Keepassxc(CMakePackage):
depends_on("qt+dbus~framework@5.2:")
depends_on("libgcrypt@1.6:", type="link")
depends_on("zlib", type="link")
+ depends_on("minizip", when="+autotype")
depends_on("libmicrohttpd", type="link")
depends_on("libsodium@1.0.12:", type="link")
depends_on("readline")
@@ -57,6 +58,9 @@ class Keepassxc(CMakePackage):
# These are required to build Auto-Type, Yubikey and browser integration support.
depends_on("libxi", type="link", when="+autotype")
depends_on("libxtst", type="link", when="+autotype")
+ depends_on("gengetopt", when="+autotype")
+ depends_on("libusb", when="+autotype")
+ depends_on("pcsclite", when="+autotype")
depends_on("botan@2:", when="@2.7.0:")
def cmake_args(self):