diff options
author | Mario Preksavec <mario@slackware.hr> | 2021-02-01 04:16:32 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-02-07 01:39:57 +0700 |
commit | 12a3fc1adb9dc2239c604623119c232957714023 (patch) | |
tree | 6817ed7eba12268b7b0fe8154e0ffc71717994ef /system/sqlcipher/sqlcipher.SlackBuild | |
parent | 4d148f974d93f5e733af91f917aaccb89edb4ba3 (diff) |
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.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/system/sqlcipher/sqlcipher.SlackBuild b/system/sqlcipher/sqlcipher.SlackBuild index e997211ef62b5..5ae180c8cb07f 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 |