summaryrefslogtreecommitdiffstats
path: root/system/sqlcipher/sqlcipher.SlackBuild
diff options
context:
space:
mode:
author Mario Preksavec2021-02-01 04:16:32 +0100
committer Willy Sudiarto Raharjo2021-02-06 19:39:57 +0100
commit12a3fc1adb9dc2239c604623119c232957714023 (patch)
tree6817ed7eba12268b7b0fe8154e0ffc71717994ef /system/sqlcipher/sqlcipher.SlackBuild
parent4d148f974d93f5e733af91f917aaccb89edb4ba3 (diff)
downloadslackbuilds-12a3fc1adb9dc2239c604623119c232957714023.tar.gz
system/sqlcipher: Updated for version 4.4.2.
Signed-off-by: Mario Preksavec <mario@slackware.hr> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/sqlcipher/sqlcipher.SlackBuild')
-rw-r--r--system/sqlcipher/sqlcipher.SlackBuild9
1 files changed, 4 insertions, 5 deletions
diff --git a/system/sqlcipher/sqlcipher.SlackBuild b/system/sqlcipher/sqlcipher.SlackBuild
index e997211ef6..5ae180c8cb 100644
--- a/system/sqlcipher/sqlcipher.SlackBuild
+++ b/system/sqlcipher/sqlcipher.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for sqlcipher
-# Copyright 2015, 2016, 2017 Mario Preksavec, Zagreb, Croatia
+# Copyright 2015, 2021 Mario Preksavec, Zagreb, Croatia
# 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=sqlcipher
-VERSION=${VERSION:-3.4.1}
+VERSION=${VERSION:-4.4.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -56,8 +56,7 @@ fi
# Do not build TCL extension by default
case ${WITH_TCL:-no} in
- y|yes|Y|YES) : ;;
- *) WITH_TCL="--disable-tcl" ;;
+ n*|N*) CONF_TCL="--disable-tcl" ;;
esac
set -e
@@ -87,7 +86,7 @@ LDFLAGS="-lcrypto" \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--enable-tempstore=yes \
--disable-static \
- $WITH_TCL \
+ $CONF_TCL \
--build=$ARCH-slackware-linux
make