diff options
author | B. Watson <urchlay@slackware.uk> | 2023-06-29 05:15:31 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-07-08 16:42:00 +0700 |
commit | ecb2e820fcce44e6e33c729f2b33d8176891fd67 (patch) | |
tree | e2740007cb3f118c709bc5d41b888cfafb499003 /libraries/gtk3-nocsd | |
parent | 46e4b8406b482ea354cc6596155ab5b30e7ec85e (diff) |
libraries/gtk3-nocsd: Fix shared lib permission.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/gtk3-nocsd')
-rw-r--r-- | libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild b/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild index 3b4d0a95419c5..950a190268cdf 100644 --- a/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild +++ b/libraries/gtk3-nocsd/gtk3-nocsd.SlackBuild @@ -22,11 +22,14 @@ # 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} @@ -40,9 +43,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -77,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} \ @@ -89,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 |