From ac2678d65cb769a189ff92d02678e1502d34f1e3 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 26 Jun 2023 23:20:34 -0400 Subject: [PATCH] libraries/agar: install shared libs +x. Signed-off-by: B. Watson Signed-off-by: Willy Sudiarto Raharjo --- libraries/agar/agar.SlackBuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libraries/agar/agar.SlackBuild b/libraries/agar/agar.SlackBuild index df525e1d14..70765b4836 100644 --- a/libraries/agar/agar.SlackBuild +++ b/libraries/agar/agar.SlackBuild @@ -10,12 +10,14 @@ # gcc. Unless that actually causes a problem, I'm not overriding it. # If you really want to build with gcc, use: export CC=gcc +# 20230626 bkw: BUILD=2, install shared libs +x + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=agar SRCNAM=libagar VERSION=${VERSION:-1.7.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -91,6 +93,7 @@ CXXFLAGS="$SLKCFLAGS" \ make make -j1 install DESTDIR=$PKG # yes, the -j1 is needed. +chmod +x $PKG/usr/lib*/*.so.*.*.* strip $PKG/usr/lib*/*.so.*.*.* # no 'make install-strip'. # since we couldn't stop static libs from being installed, delete them here,