diff options
author | B. Watson <urchlay@slackware.uk> | 2023-06-27 03:05:16 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-07-08 16:41:57 +0700 |
commit | 8e126f5be69ccea33041520c90afa6afc5534477 (patch) | |
tree | 4d3b30dbac7d2d3a9508eb5e64857cf806f883e5 /development | |
parent | 37a52401c57c94842c962c933f51c7200763c34f (diff) |
development/srecord: Install shared library +x.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/srecord/srecord.SlackBuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/development/srecord/srecord.SlackBuild b/development/srecord/srecord.SlackBuild index dee8b6b0fd8aa..39a18efec2259 100644 --- a/development/srecord/srecord.SlackBuild +++ b/development/srecord/srecord.SlackBuild @@ -6,6 +6,11 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20230627 bkw: BUILD=2 +# - install shared lib with +x perm. +# Note: I know there's a 1.65 release. But it has problems. Waiting on +# 1.66 to see if it's any better. + # 20210907 bkw: BUILD=2 # - get rid of useless BUILDING.pdf # - move PDF docs directly into the doc dir (instead of a subdir of it) @@ -20,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=srecord VERSION=${VERSION:-1.64} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -90,6 +95,7 @@ make install DESTDIR=$PKG rm -f $PKGLIB/*.a strip $PKG/usr/bin/* $PKGLIB/*.so.?.?.? +chmod 755 $PKGLIB/*.so.?.?.? rm -f $PKGLIB/*.la gzip -9 $PKG/usr/man/man?/* |