system/memkind: Remove 32bit support.

Signed-off-by: bedlam <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Vijay Marcel 2023-05-17 22:06:46 +01:00 committed by Willy Sudiarto Raharjo
parent 5da218ff18
commit e02c0ac8b0
No known key found for this signature in database
GPG key ID: 3F617144D7238786
3 changed files with 24 additions and 21 deletions

12
system/memkind/changelog Normal file
View file

@ -0,0 +1,12 @@
Changelog for memkind SlackBuild Script
--------------------------------------------------------------------
03/09/2022:
Added to slackbuilds.org
15/05/2023:
Updated to version 1.13.0
From this build onwards it will only build
on x86_64 platform only.

View file

@ -2,7 +2,7 @@
# Slackware build script for memkind
# Copyright 2022 Vijay Marcel
# Copyright 2022-2023 Vijay Marcel
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -29,14 +29,12 @@ VERSION=${VERSION:-1.14.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
sys_arch=${sys_arch:-$(uname -m)}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
case "$sys_arch" in
x86_64) export ARCH=x86_64 ;;
*) echo "This program will not build on $sys_arch platform" && exit 1 ;;
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
@ -50,18 +48,11 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
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"
if [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-march=x86-64 -mtune=native -pipe -O2 -fPIC"
LIBDIRSUFFIX="64"
else
SLKCFLAGS="-O2"
LIBDIRSUFFIX=""
echo "This program will not build on $sys_arch platform" && exit 1
fi
set -e

View file

@ -1,10 +1,10 @@
PRGNAM="memkind"
VERSION="1.14.0"
HOMEPAGE="https://pmem.io/memkind/"
DOWNLOAD="https://github.com/memkind/memkind/archive/v1.14.0/memkind-1.14.0.tar.gz"
MD5SUM="252ee2458d7830774ee0ac003f2140a1"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
DOWNLOAD="UNSUPPORTED"
MD5SUM=""
DOWNLOAD_x86_64="https://github.com/memkind/memkind/archive/v1.14.0/memkind-1.14.0.tar.gz"
MD5SUM_x86_64="252ee2458d7830774ee0ac003f2140a1"
REQUIRES="numactl pandoc-bin"
MAINTAINER="Vijay Marcel"
EMAIL="vijaymarcel@outlook.com"