summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author Benjamin Trigona-Harany2017-07-04 18:43:40 +0200
committer Willy Sudiarto Raharjo2017-07-08 02:11:22 +0200
commitaeb7dfb5ca9b5e52bf84ec5fc15b093445f6b623 (patch)
tree7c84cfd2861c61ef592bba20ff1872e267d75f89 /office
parent2d08977e27a09b9973e6f9556abbf7f5d211d82c (diff)
downloadslackbuilds-aeb7dfb5ca9b5e52bf84ec5fc15b093445f6b623.tar.gz
office/keepassxc: Change XC_HTTP default to ON.
Signed-off-by: Benjamin Trigona-Harany <bosth@alumni.sfu.ca>
Diffstat (limited to 'office')
-rw-r--r--office/keepassxc/README8
-rw-r--r--office/keepassxc/keepassxc.SlackBuild4
2 files changed, 6 insertions, 6 deletions
diff --git a/office/keepassxc/README b/office/keepassxc/README
index d21cd9e964..77b004d615 100644
--- a/office/keepassxc/README
+++ b/office/keepassxc/README
@@ -6,12 +6,12 @@ features, and bug fixes that are not being incorporated into the main KeePassX
baseline. KeePassXC may be installed alongside KeePassX (also available as a
SlackBuild).
-KeePassXC can be built with keepasshttp support, meaning that it can function
-as password storage for Mozilla Firefox and Chromium. This may be enabled by
-passing XC_HTTP=ON to the script.
-
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.
+KeePassXC will be built with http support, meaning that it can retrieve favicons
+from web sites and function as password storage for Mozilla Firefox and
+Chromium/Chrome. This may be disabled by passing XC_HTTP=OFF to the script.
+
Autotype may be disabled by passing XC_AUTOTYPE=OFF.
diff --git a/office/keepassxc/keepassxc.SlackBuild b/office/keepassxc/keepassxc.SlackBuild
index 2d78c1a102..a7a53aebfe 100644
--- a/office/keepassxc/keepassxc.SlackBuild
+++ b/office/keepassxc/keepassxc.SlackBuild
@@ -24,7 +24,7 @@
PRGNAM=keepassxc
VERSION=${VERSION:-2.2.0}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -75,7 +75,7 @@ cd build
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DWITH_TESTS=OFF \
- -DWITH_XC_HTTP="${XC_HTTP:-OFF}" \
+ -DWITH_XC_HTTP="${XC_HTTP:-ON}" \
-DWITH_XC_YUBIKEY="${XC_YUBIKEY:-OFF}" \
-DWITH_XC_AUTOTYPE="${XC_AUTOTYPE:-ON}" \
..