summaryrefslogtreecommitdiffstats
path: root/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild')
-rw-r--r--libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild24
1 files changed, 18 insertions, 6 deletions
diff --git a/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild b/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild
index 7080b918a7..950a190268 100644
--- a/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild
+++ b/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for gtk3-nocsd
@@ -22,10 +22,16 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# 20230629 bkw: Modified by SlackBuilds.org, BUILD=2:
+# - install shared library +x.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=gtk3-nocsd
VERSION=${VERSION:-20160617git}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
COMMIT_ID=${COMMIT_ID:-82ff5a0da54aa6da27232b55eb93e5f4b5de22f2}
@@ -37,7 +43,11 @@ if [ -z "$ARCH" ]; then
esac
fi
-CWD=$(pwd)
+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}
@@ -67,9 +77,9 @@ cd $PRGNAM-$COMMIT_ID
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 {} +
make prefix=/usr \
libdir=/usr/lib${LIBDIRSUFFIX} \
@@ -79,6 +89,8 @@ make install DESTDIR=$PKG \
libdir=/usr/lib${LIBDIRSUFFIX} \
mandir=/usr/man
+chmod +x $PKG/usr/lib*/*so.*
+
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
@@ -94,4 +106,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:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE