diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2023-09-23 14:14:38 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-09-30 11:16:20 +0700 |
commit | 9e4d05088ce70e754bc867d4939798886e8e4345 (patch) | |
tree | 7415bc74022a3aca483da9bf25f7a4b57a1e2739 | |
parent | 16462173ad5fbf189d58b09ce535e60e8b8aab6a (diff) |
desktop/qtpass: Updated for version 1.4.0.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | desktop/qtpass/qtpass.SlackBuild | 12 | ||||
-rw-r--r-- | desktop/qtpass/qtpass.info | 6 |
2 files changed, 7 insertions, 11 deletions
diff --git a/desktop/qtpass/qtpass.SlackBuild b/desktop/qtpass/qtpass.SlackBuild index 7e2f3d0ce4daa..5267d363e5017 100644 --- a/desktop/qtpass/qtpass.SlackBuild +++ b/desktop/qtpass/qtpass.SlackBuild @@ -3,6 +3,7 @@ # Slackware build script for qtpass # Copyright 2017-2019 Andrew Clemons, Wellington New Zealand +# Copyright 2023 Andrew Clemons, Tokyo Japan # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -26,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=qtpass SRCNAM="$(echo "$PRGNAM" | tr 'qp' 'QP')" -VERSION=${VERSION:-1.3.2} +VERSION=${VERSION:-1.4.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -39,9 +40,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -53,16 +51,14 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" +elif [ "$ARCH" = "aarch64" ]; then + SLKCFLAGS="-O2 -fPIC" else SLKCFLAGS="-O2" - LIBDIRSUFFIX="" fi set -e diff --git a/desktop/qtpass/qtpass.info b/desktop/qtpass/qtpass.info index 1b3092fc35ea2..f3c444e7e46b8 100644 --- a/desktop/qtpass/qtpass.info +++ b/desktop/qtpass/qtpass.info @@ -1,8 +1,8 @@ PRGNAM="qtpass" -VERSION="1.3.2" +VERSION="1.4.0" HOMEPAGE="https://github.com/IJHack/QtPass" -DOWNLOAD="https://github.com/IJHack/QtPass/archive/v1.3.2/QtPass-1.3.2.tar.gz" -MD5SUM="a711cd4c4f92832e37dbad45cd84618e" +DOWNLOAD="https://github.com/IJHack/QtPass/archive/v1.4.0/QtPass-1.4.0.tar.gz" +MD5SUM="38eef427b51cc86dcb56bca04aae0fa5" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="password-store" |