office/keepassxc: Updated for version 2.4.1.

This commit is contained in:
Benjamin Trigona-Harany 2019-04-12 18:54:13 -07:00 committed by Willy Sudiarto Raharjo
parent c8b7e46849
commit 32d37548ec
No known key found for this signature in database
GPG Key ID: 887B8374D7333381
3 changed files with 17 additions and 13 deletions

View File

@ -7,18 +7,21 @@ baseline. KeePassXC may be installed alongside KeePassX (also available as a
SlackBuild).
KeePassXC can be built with YubiKey two-factor authentication support for
unlocking the database. This introduces a dependency on ykpers and can be
unlocking the database. This introduces a dependency on misc/ykpers and can be
enabled by passing YUBIKEY=ON to the script.
KeePassXC will be built with browser support, meaning it can function as
Browser support is enabled by default, meaning that KeePassXC can function as
password storage for Mozilla Firefox and Chromium/Chrome. This may be disabled
by passing BROWSER=OFF to the script.
KeePassXC will be built with SSH agent support, meaning that KeepassXC can
interact with a running agent. This may be disabled by passing SSHAGENT=OFF to
the script.
KeePassXC will be built with SSH agent support, allowing it to interact with a
running agent. This may be disabled by passing SSHAGENT=OFF to the script.
KeePassXC will be built with networking support, meaning that website favicons
can be downloaded. This maybe disabled by passing NETWORKING=OFF to the script.
Networking support, allowing website favicons to be downloaded, is enabled by
default. This maybe disabled by passing NETWORKING=OFF to the script.
Support for database sharing and synchronisation using KeeShare will be
disabled. It can be enabled by setting KEESHARE=ON, or a secure version can be
enabled with KEESHARE_SECURE=ON, providing libraries/quazip-qt5 is installed.
Autotype may be disabled by passing AUTOTYPE=OFF.

View File

@ -2,7 +2,7 @@
# Slackware build script for KeePassXC
# Copyright 2017-2018 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
# Copyright 2017-2019 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=keepassxc
VERSION=${VERSION:-2.4.0}
VERSION=${VERSION:-2.4.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -80,7 +80,8 @@ cd build
-DWITH_XC_NETWORKING=${NETWORKING:-ON} \
-DWITH_XC_AUTOTYPE=${AUTOTYPE:-ON} \
-DWITH_XC_SSHAGENT=${SSHAGENT:-ON} \
-DWITH_XC_KEESHARE=ON \
-DWITH_XC_KEESHARE=${KEESHARE:-OFF} \
-DWITH_XC_KEESHARE_SECURE=${KEESHARE_SECURE:-OFF} \
..
make

View File

@ -1,8 +1,8 @@
PRGNAM="keepassxc"
VERSION="2.4.0"
VERSION="2.4.1"
HOMEPAGE="https://github.com/keepassxreboot/keepassxc"
DOWNLOAD="https://github.com/keepassxreboot/keepassxc/releases/download/2.4.0/keepassxc-2.4.0-src.tar.xz"
MD5SUM="6dea2395ba32e30f3f9a10239728d2b6"
DOWNLOAD="https://github.com/keepassxreboot/keepassxc/releases/download/2.4.1/keepassxc-2.4.1-src.tar.xz"
MD5SUM="5ca1a374c3250ad8965cdbd5b2db5962"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="argon2 libsodium qrencode qt5"