aboutsummaryrefslogtreecommitdiff
path: root/libraries/libfabric/libfabric.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/libfabric/libfabric.SlackBuild')
-rw-r--r--libraries/libfabric/libfabric.SlackBuild26
1 files changed, 23 insertions, 3 deletions
diff --git a/libraries/libfabric/libfabric.SlackBuild b/libraries/libfabric/libfabric.SlackBuild
index 718764b11d..6e2c3bcef2 100644
--- a/libraries/libfabric/libfabric.SlackBuild
+++ b/libraries/libfabric/libfabric.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for libfabric
-# Copyright 2022-2024 Vijay Marcel
+# Copyright 2022-2025 Vijay Marcel
# All rights reserved.
#
@@ -23,10 +23,30 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# Changelog for libfabric SlackBuild Script
+# ---------------------------------------------------------------------------------
+
+# 03/09/2022: Added to slackbuilds.org
+
+# 18/02/2023: libfabric slackbuild script fixed by B.Watson
+
+# 16/05/2023: Updated to version 1.18.0 From this build onwards it will only build
+# on x86_64 platform only.
+
+# 19/02/2024: Updated to version 1.20.1
+
+# 23/04/2024: Updated to version 1.21.0
+
+# 18/08/2024: Updated to version 1.22.0
+
+# 18/02/2025: updated to version 2.0.0
+
+# ---------------------------------------------------------------------------------------
+
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=libfabric
-VERSION=${VERSION:-1.22.0}
+VERSION=${VERSION:-2.0.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -89,7 +109,7 @@ make
make install DESTDIR=$PKG
# Don't ship .la files:
-rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
+rm -f $PKG/usr/lib${LIBDIRSUFFIX}/*.la
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \
| grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note 2> /dev/null || true