office/keepassxc: Updated for version 2.3.4.

Removed XC prefix from compile-time options.
This commit is contained in:
Benjamin Trigona-Harany 2018-08-23 13:13:14 -07:00 committed by Willy Sudiarto Raharjo
parent 522b9ce2f7
commit ea3f912fe1
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 15 additions and 15 deletions

View file

@ -8,17 +8,17 @@ SlackBuild).
KeePassXC can be built with YubiKey two-factor authentication support for
unlocking the database. This introduces a dependency on ykpers and can be
enabled by passing XC_YUBIKEY=ON to the script.
enabled by passing YUBIKEY=ON to the script.
KeePassXC will be built with browser support, meaning it can function as
password storage for Mozilla Firefox and Chromium/Chrome. This may be disabled
by passing XC_BROWSER=OFF to the script.
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 XC_SSHAGENT=OFF
to the script.
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 XC_NETWORKING=OFF to the script.
can be downloaded. This maybe disabled by passing NETWORKING=OFF to the script.
Autotype may be disabled by passing XC_AUTOTYPE=OFF.
Autotype may be disabled by passing AUTOTYPE=OFF.

View file

@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=keepassxc
VERSION=${VERSION:-2.3.3}
VERSION=${VERSION:-2.3.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -75,11 +75,11 @@ cd build
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DWITH_TESTS=OFF \
-DWITH_XC_BROWSER="${XC_BROWSER:-ON}" \
-DWITH_XC_YUBIKEY="${XC_YUBIKEY:-OFF}" \
-DWITH_XC_NETWORKING="${XC_NETWORKING:-ON}" \
-DWITH_XC_AUTOTYPE="${XC_AUTOTYPE:-ON}" \
-DWITH_XC_SSHAGENT="${XC_SSHAGENT:-ON}" \
-DWITH_XC_BROWSER="${BROWSER:-ON}" \
-DWITH_XC_YUBIKEY="${YUBIKEY:-OFF}" \
-DWITH_XC_NETWORKING="${NETWORKING:-ON}" \
-DWITH_XC_AUTOTYPE="${AUTOTYPE:-ON}" \
-DWITH_XC_SSHAGENT="${SSHAGENT:-ON}" \
..
make

View file

@ -1,8 +1,8 @@
PRGNAM="keepassxc"
VERSION="2.3.3"
VERSION="2.3.4"
HOMEPAGE="https://github.com/keepassxreboot/keepassxc"
DOWNLOAD="https://github.com/keepassxreboot/keepassxc/releases/download/2.3.3/keepassxc-2.3.3-src.tar.xz"
MD5SUM="87872cbe11867c8526b366e19648b8fa"
DOWNLOAD="https://github.com/keepassxreboot/keepassxc/releases/download/2.3.4/keepassxc-2.3.4-src.tar.xz"
MD5SUM="c8f8280cf4155c32d0b50c059d0a3edf"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="argon2 libsodium qt5"