mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
network/webex: Fix shared lib permissions.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
aa5bdfe8b4
commit
3fc8304a43
1 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
||||
# 20230701 bkw: Modified by SlackBuilds.org, BUILD=2:
|
||||
# - +x permission for shared libs.
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=webex
|
||||
VERSION=${VERSION:-43.5.0.26155}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
||||
|
@ -77,6 +80,8 @@ rm $PKG/opt/Webex/bin/webex.desktop
|
|||
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
|
||||
|
||||
find $PKG -type f -a -name '*.so*' -exec chmod 755 {} +
|
||||
|
||||
# Link the binary:
|
||||
mkdir -p $PKG/usr/bin
|
||||
( cd $PKG/usr/bin; ln -s ../../opt/Webex/bin/CiscoCollabHost webex )
|
||||
|
|
Loading…
Reference in a new issue