system/pmdk: Updated for version 1.13.0.

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:16:34 +01:00 committed by Willy Sudiarto Raharjo
parent e02c0ac8b0
commit c758988885
No known key found for this signature in database
GPG key ID: 3F617144D7238786
3 changed files with 31 additions and 24 deletions

16
system/pmdk/changelog Normal file
View file

@ -0,0 +1,16 @@
Changelog for pmdk SlackBuild Script
--------------------------------------------------------------------
03/09/2022:
Added to slackbuilds.org
18/02/2023:
pmdk slackbuild script fixed by B.Watson
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 pmdk
# Copyright 2022 Vijay Marcel
# Copyright 2022-2023 Vijay Marcel
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -25,18 +25,16 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=pmdk
VERSION=${VERSION:-1.12.0}
VERSION=${VERSION:-1.13.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) export ARCH=i586 ;;
arm*) export ARCH=arm ;;
*) export ARCH=$( uname -m ) ;;
esac
fi
case "$sys_arch" in
x86_64) export ARCH=x86_64 ;;
*) echo "This program will not build on $sys_arch platform" && exit 1 ;;
esac
# 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 in this $sys_arch platform" && exit 1
fi
set -e

View file

@ -1,10 +1,10 @@
PRGNAM="pmdk"
VERSION="1.12.0"
VERSION="1.13.0"
HOMEPAGE="https://pmem.io/"
DOWNLOAD="https://github.com/pmem/pmdk/archive/1.12.0/pmdk-1.12.0.tar.gz"
MD5SUM="7ddb162ae1906a9f1fe8f8e41276d56a"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
DOWNLOAD="UNSUPPORTED"
MD5SUM=""
DOWNLOAD_x86_64="https://github.com/pmem/pmdk/archive/1.13.0/pmdk-1.13.0.tar.gz"
MD5SUM_x86_64="8e2dc1fedc0c9bdfa4f04e2ebbe28b7f"
REQUIRES="pandoc-bin"
MAINTAINER="Vijay Marcel"
EMAIL="vijaymarcel@outlook.com"