diff options
author | Thibaut Notteboom <thibaut.notteboom@gmail.com> | 2023-11-20 09:51:01 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-11-20 10:08:24 +0700 |
commit | c674b9982589915ae09a116bc57c9eab87918710 (patch) | |
tree | 5431219675c95e069876a802a24c97e6a4d30c0c /python/python3-ldap/python3-ldap.SlackBuild | |
parent | c70e6b1f3aabd84bb3f176918da3e7a5fa2409e1 (diff) |
python/python3-ldap: Updated for version 3.4.4.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-ldap/python3-ldap.SlackBuild')
-rw-r--r-- | python/python3-ldap/python3-ldap.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/python3-ldap/python3-ldap.SlackBuild b/python/python3-ldap/python3-ldap.SlackBuild index 9d7c948aa2..c84a87d4a1 100644 --- a/python/python3-ldap/python3-ldap.SlackBuild +++ b/python/python3-ldap/python3-ldap.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for python3-ldap -# Copyright 2018-2022 Thibaut Notteboom, Paris, FRANCE +# Copyright 2018-2023 Thibaut Notteboom, Paris, FRANCE # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=python3-ldap -VERSION=${VERSION:-3.4.3} +VERSION=${VERSION:-3.4.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -40,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 @@ -61,6 +58,9 @@ elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" +elif [ "$ARCH" = "aarch64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" else SLKCFLAGS="-O2" LIBDIRSUFFIX="" |