diff options
Diffstat (limited to 'libraries/libfabric/libfabric.SlackBuild')
-rw-r--r-- | libraries/libfabric/libfabric.SlackBuild | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/libraries/libfabric/libfabric.SlackBuild b/libraries/libfabric/libfabric.SlackBuild index 6e2c3bcef2..273ef52d57 100644 --- a/libraries/libfabric/libfabric.SlackBuild +++ b/libraries/libfabric/libfabric.SlackBuild @@ -27,26 +27,21 @@ # --------------------------------------------------------------------------------- # 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 - +# 16/04/2025: updated to version 2.1.0 +# 25/07/2025: updated to version 2.2.0 # --------------------------------------------------------------------------------------- cd $(dirname $0) ; CWD=$(pwd) PRGNAM=libfabric -VERSION=${VERSION:-2.0.0} +VERSION=${VERSION:-2.2.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -87,9 +82,9 @@ cd $PRGNAM-$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 \ + -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 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ ./autogen.sh CFLAGS="$SLKCFLAGS" \ @@ -125,4 +120,4 @@ 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 +/sbin/makepkg -l y -c n --remove-rpaths --remove-tmp-rpaths $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |