void-packages/srcpkgs/teams-bin/template
2021-06-12 21:26:46 +02:00

46 lines
1.3 KiB
Bash

# Template file for 'teams-bin'
pkgname=teams-bin
version=1.4.00.13653
revision=1
archs="x86_64"
short_desc="Official Microsoft Teams client"
maintainer="Piraty <piraty1@inbox.ru>"
license="custom:Proprietary"
homepage="https://teams.microsoft.com/downloads"
distfiles="https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_${version}_amd64.deb"
checksum=5b4217fab3df145b1a37c53d138d87713786f290805a90fc276434770692a4cf
repository=nonfree
restricted=yes
do_extract() {
ar p "${XBPS_SRCDISTDIR}/${pkgname}-${version}/teams_${version}_amd64.deb" data.tar.xz | bsdtar --extract --xz -f - -C .
}
do_install() {
# use our simple wrapper instead of the provided one
vbin ${FILESDIR}/teams-wrapper.sh teams
vmkdir usr/lib/teams
vcopy usr/share/teams usr/lib/
vmkdir usr/share
vcopy usr/share/applications usr/share/
vcopy usr/share/pixmaps usr/share/
vlicense usr/share/teams/resources/ReadmeFirstTermsofUse.txt
vlicense usr/share/teams/resources/ThirdPartyNotice.txt
vlicense usr/share/teams/LICENSE
vlicense usr/share/teams/LICENSES.chromium.html
}
post_install() {
# purge bundled libraries, but keep those not provided by Void
mkdir libsave
for lib in libffmpeg.so; do
mv ${DESTDIR}/usr/lib/teams/$lib libsave
done
find ${DESTDIR}/usr/lib/teams/ -name '*.so' -delete
mv libsave/* ${DESTDIR}/usr/lib/teams/
}