diff options
author | Igor Alexandrov <igor.alexandrov@outlook.com> | 2020-04-24 08:01:10 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-04-24 08:01:10 +0700 |
commit | f30839492c4cb2e51295963e1733761483843084 (patch) | |
tree | c1d6b3033a22b38f585ead4cde7f6dfa6255e06c /network/bluejeans/bluejeans.SlackBuild | |
parent | 4c8f8481f9b7cec550f129970b0a2e1d61516ff4 (diff) | |
download | slackbuilds-f30839492c4cb2e51295963e1733761483843084.tar.gz |
network/bluejeans: Updated for version 2.1.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/bluejeans/bluejeans.SlackBuild')
-rw-r--r-- | network/bluejeans/bluejeans.SlackBuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/network/bluejeans/bluejeans.SlackBuild b/network/bluejeans/bluejeans.SlackBuild index 4627a26c0a..b445e6be1a 100644 --- a/network/bluejeans/bluejeans.SlackBuild +++ b/network/bluejeans/bluejeans.SlackBuild @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/sh -eu # Slackware build script for bluejeans -# Copyright 2019 Igor Alexandrov <igora.vault@gmail.com> +# Copyright 2019, 2020 Igor Alexandrov <igor.alexandrov@outlook.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=bluejeans -VERSION=${VERSION:-2.1.0} +VERSION=${VERSION:-2.1.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -48,8 +48,6 @@ if [ "$ARCH" != "x86_64" ]; then exit 1 fi -set -e - rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $PKG @@ -65,6 +63,10 @@ find -L . \ find . -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +sed -i \ + 's#Categories=AudioVideo;#Categories=Network;InstantMessaging;#' \ + usr/share/applications/bluejeans-v2.desktop + mkdir -p usr/{bin,doc/$PRGNAM-$VERSION} ln -s ../../opt/$SRCNAM/$EXECNAM usr/bin/$PRGNAM ln -s ../../../opt/$SRCNAM/LICENSE.electron.txt usr/doc/$PRGNAM-$VERSION |