diff options
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 |