summaryrefslogtreecommitdiffstats
path: root/libraries/microsoft-gsl
diff options
context:
space:
mode:
author xaizek <xaizek@posteo.net>2023-05-18 23:36:12 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2023-05-20 11:17:12 +0700
commite6b5e21797170d96f0f64d630cdd31b32e2f4924 (patch)
tree21564d9f0defa3ea2a121954996236b7dc689192 /libraries/microsoft-gsl
parente2213e1dcdfacd9f0d8467e37772e5cb5b08b4f3 (diff)
downloadslackbuilds-e6b5e21797170d96f0f64d630cdd31b32e2f4924.tar.gz
slackbuilds-e6b5e21797170d96f0f64d630cdd31b32e2f4924.tar.xz
libraries/microsoft-gsl: Added (C++ Core Guidelines Support Library)
Signed-off-by: bedlam <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/microsoft-gsl')
-rw-r--r--libraries/microsoft-gsl/README5
-rw-r--r--libraries/microsoft-gsl/microsoft-gsl.SlackBuild104
-rw-r--r--libraries/microsoft-gsl/microsoft-gsl.info10
-rw-r--r--libraries/microsoft-gsl/slack-desc19
4 files changed, 138 insertions, 0 deletions
diff --git a/libraries/microsoft-gsl/README b/libraries/microsoft-gsl/README
new file mode 100644
index 0000000000..4644250670
--- /dev/null
+++ b/libraries/microsoft-gsl/README
@@ -0,0 +1,5 @@
+Microsoft's header-only implementation of functions and types that
+are suggested for use by the C++ Core Guidelines maintained by the
+Standard C++ Foundation.
+
+The implementation generally assumes C++14 support.
diff --git a/libraries/microsoft-gsl/microsoft-gsl.SlackBuild b/libraries/microsoft-gsl/microsoft-gsl.SlackBuild
new file mode 100644
index 0000000000..5dfc9b1027
--- /dev/null
+++ b/libraries/microsoft-gsl/microsoft-gsl.SlackBuild
@@ -0,0 +1,104 @@
+#!/bin/bash
+
+# Slackware build script for microsoft-gsl
+
+# Copyright 2023 xaizek <xaizek@posteo.net>
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=microsoft-gsl
+VERSION=${VERSION:-4.0.0}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i586 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
+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"
+ LIBDIRSUFFIX="64"
+elif [ "$ARCH" = "aarch64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+fi
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
+cd GSL-$VERSION
+chown -R root:root .
+find -L . \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+
+mkdir -p build
+cd build
+ cmake \
+ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DGSL_TEST=OFF \
+ -DCMAKE_BUILD_TYPE=Release \
+ ..
+ make
+ make install/strip DESTDIR=$PKG
+cd ..
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a \
+ LICENSE README.md ThirdPartyNotices.txt \
+ $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/libraries/microsoft-gsl/microsoft-gsl.info b/libraries/microsoft-gsl/microsoft-gsl.info
new file mode 100644
index 0000000000..75a171c2fe
--- /dev/null
+++ b/libraries/microsoft-gsl/microsoft-gsl.info
@@ -0,0 +1,10 @@
+PRGNAM="microsoft-gsl"
+VERSION="4.0.0"
+HOMEPAGE="https://github.com/microsoft/GSL"
+DOWNLOAD="https://github.com/microsoft/GSL/archive/v4.0.0/microsoft-gsl-4.0.0.tar.gz"
+MD5SUM="4b1a5f39c5f489d2bdf3bd352548907d"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="xaizek"
+EMAIL="xaizek@posteo.net"
diff --git a/libraries/microsoft-gsl/slack-desc b/libraries/microsoft-gsl/slack-desc
new file mode 100644
index 0000000000..e1fea530ee
--- /dev/null
+++ b/libraries/microsoft-gsl/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+microsoft-gsl: microsoft-gsl (C++ Core Guidelines Support Library)
+microsoft-gsl:
+microsoft-gsl: Microsoft's header-only implementation of functions and types that
+microsoft-gsl: are suggested for use by the C++ Core Guidelines maintained by the
+microsoft-gsl: Standard C++ Foundation.
+microsoft-gsl:
+microsoft-gsl: The implementation generally assumes C++14 support.
+microsoft-gsl:
+microsoft-gsl:
+microsoft-gsl:
+microsoft-gsl: