summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author ArTourter <artourter@gmail.com>2025-06-14 08:40:21 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2025-06-14 09:20:36 +0700
commitba15e881fd861044c7609b9139c74b1511029075 (patch)
tree113a3a69310da2754d08e57f4ced2fe0f7b068f3
parentbcf5b22a8bd21438cdc2a6db0ac6bada3596cdc3 (diff)
downloadslackbuilds-ba15e881fd861044c7609b9139c74b1511029075.tar.gz
slackbuilds-ba15e881fd861044c7609b9139c74b1511029075.tar.xz
network/teams-for-linux: Added (Microsoft Teams client).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--network/teams-for-linux/README22
-rw-r--r--network/teams-for-linux/doinst.sh9
-rw-r--r--network/teams-for-linux/slack-desc19
-rw-r--r--network/teams-for-linux/teams-for-linux.SlackBuild89
-rw-r--r--network/teams-for-linux/teams-for-linux.info10
5 files changed, 149 insertions, 0 deletions
diff --git a/network/teams-for-linux/README b/network/teams-for-linux/README
new file mode 100644
index 0000000000..acb61e03fb
--- /dev/null
+++ b/network/teams-for-linux/README
@@ -0,0 +1,22 @@
+teams-for-linux
+
+Unofficial Microsoft Teams client for Linux using Electron. This app
+wraps the web version of Teams as a standalone desktop application.
+
+Teams for Linux was developed to provide a native-like desktop
+experience by wrapping the web version in an Electron shell.
+
+While we strive to add useful features and improvements, some
+limitations are inherent because the app relies on the Microsoft Teams
+web version. In cases where Microsoft controls the feature set (or
+behavior), issues may be closed with an explanation.
+
+We are not affiliated with Microsoft, and this project is not endorsed
+by them. It is an independent effort to provide a better experience for
+Linux users.
+
+Please report bugs and enhancements in the issues section. We will
+attend them as soon as possible. Please review the open/close issues
+before raising a new one and avoid duplicates. We encourage everyone to
+join our chat room in matrix and ask your questions. That's probably the
+quickest way to find solutions.
diff --git a/network/teams-for-linux/doinst.sh b/network/teams-for-linux/doinst.sh
new file mode 100644
index 0000000000..65c7e2eeb9
--- /dev/null
+++ b/network/teams-for-linux/doinst.sh
@@ -0,0 +1,9 @@
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+fi
+
+if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
+ if [ -x /usr/bin/gtk-update-icon-cache ]; then
+ /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
+ fi
+fi
diff --git a/network/teams-for-linux/slack-desc b/network/teams-for-linux/slack-desc
new file mode 100644
index 0000000000..2eac291377
--- /dev/null
+++ b/network/teams-for-linux/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+teams-for-linux: teams-for-linux (Unofficial Microsoft Teams for Linux client)
+teams-for-linux:
+teams-for-linux: Unofficial Microsoft Teams client for Linux using Electron. This app
+teams-for-linux: wraps the web version of Teams as a standalone desktop application.
+teams-for-linux:
+teams-for-linux: Teams for Linux was developed to provide a native-like desktop
+teams-for-linux: experience by wrapping the web version in an Electron shell.
+teams-for-linux:
+teams-for-linux:
+teams-for-linux:
+teams-for-linux:
diff --git a/network/teams-for-linux/teams-for-linux.SlackBuild b/network/teams-for-linux/teams-for-linux.SlackBuild
new file mode 100644
index 0000000000..1ab7c95e3b
--- /dev/null
+++ b/network/teams-for-linux/teams-for-linux.SlackBuild
@@ -0,0 +1,89 @@
+#!/bin/bash
+
+# Slackware build script for teams-for-linux
+
+# Copyright 2025 - Greg Tourte <artouter@gmail.com>
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=teams-for-linux
+VERSION=${VERSION:-2.0.15}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i586 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ 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
+fi
+
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+# Upstream only has binary support for x86_64 at present.
+if [ "$ARCH" = "x86_64" ]; then
+ DEBARCH="amd64"
+else
+ echo "Sorry, the Signal binary is currently available for x86_64 only."
+ exit 1
+fi
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $PKG
+ar p $CWD/${PRGNAM}_${VERSION}_$DEBARCH.deb data.tar.xz | tar xJv
+chown -R root:root .
+find -L . \
+ -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \
+ \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} +
+
+# create soft link for launcher
+mkdir -p $PKG/usr/bin
+ln -sf ../../opt/teams-for-linux/$PRGNAM $PKG/usr/bin/$PRGNAM
+
+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
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp $PKG/usr/share/doc/$PRGNAM/* $PKG/opt/teams-for-linux/LICENSE* $PKG/usr/doc/$PRGNAM-$VERSION
+rm -rf $PKG/usr/share/doc
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+cat $CWD/doinst.sh > $PKG/install/doinst.sh
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/network/teams-for-linux/teams-for-linux.info b/network/teams-for-linux/teams-for-linux.info
new file mode 100644
index 0000000000..673cd957d6
--- /dev/null
+++ b/network/teams-for-linux/teams-for-linux.info
@@ -0,0 +1,10 @@
+PRGNAM="teams-for-linux"
+VERSION="2.0.15"
+HOMEPAGE="https://github.com/IsmaelMartinez/teams-for-linux"
+DOWNLOAD="UNSUPPORTED"
+MD5SUM=""
+DOWNLOAD_x86_64="https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v2.0.15/teams-for-linux_2.0.15_amd64.deb"
+MD5SUM_x86_64="2edf8577c542065f56714ab486739bec"
+REQUIRES=""
+MAINTAINER="ArTourter"
+EMAIL="artourter@gmail.com"