teamviewer/PKGBUILD

75 lines
3.1 KiB
Bash
Raw Normal View History

# Maintainer: Alex Taber <aft dot pokemon at gmail dot com>
2015-06-08 03:58:09 -07:00
pkgname=teamviewer
2019-04-25 02:39:47 -07:00
pkgver=14.2.8352
2019-01-26 00:47:38 -08:00
pkgrel=1
pkgdesc='All-In-One Software for Remote Support and Online Meetings'
arch=('i686' 'x86_64' 'armv7h')
url='http://www.teamviewer.com'
2015-06-08 03:58:09 -07:00
license=('custom')
options=('!strip')
provides=('teamviewer')
2015-12-02 17:32:31 -08:00
conflicts=('teamviewer-beta')
# /opt/teamviewer/tv_bin/script/teamviewer_setup checklibs can check deps for each TV component:
# TV_DMN, TV_DESK, TV_GUI
2018-04-21 18:49:25 -07:00
depends=(
'hicolor-icon-theme'
'qt5-webkit'
'qt5-x11extras'
2018-04-21 18:54:49 -07:00
'qt5-quickcontrols' # Doesn't appear in namcap, won't display UI without it.
2018-04-21 18:49:25 -07:00
)
#depends_x86_64=(
2018-04-21 18:49:25 -07:00
# libdepends:
# 'lib32-libxtst'
# 'lib32-libxinerama'
# 'lib32-libxrandr'
# 'lib32-libxdamage'
# 'lib32-fontconfig'
# 'lib32-libsm')
2018-04-21 18:49:25 -07:00
#depends_i686=()
#depends_armv7h=()
install=teamviewer.install
source_x86_64=("https://dl.tvcdn.de/download/linux/version_${pkgver%%.*}x/teamviewer_${pkgver}_amd64.deb")
source_i686=("https://dl.tvcdn.de/download/linux/version_${pkgver%%.*}x/teamviewer_${pkgver}_i386.deb")
2018-08-11 09:09:06 -07:00
source_armv7h=("https://dl.tvcdn.de/download/linux/version_${pkgver%%.*}x/teamviewer-host_${pkgver}_armhf.deb")
#source_armv7h=("https://dl.tvcdn.de/download/linux/version_${pkgver%%.*}x/teamviewer-host_13.2.13582_armhf.deb")
2019-04-25 02:39:47 -07:00
sha256sums_i686=('23321131a51d65b7a594599ad6fc88cc8033381bfc7eed681d1209b14ebd157e')
sha256sums_x86_64=('5e89849b45302c12b752ee99b9aaa48c0e8dde4f756d389d078b3cf3e8804e8c')
sha256sums_armv7h=('e3f41879ad19ee28091f8293f3449c1b74af06e81423bba87574364df4963f61')
2015-06-08 03:58:09 -07:00
prepare() {
2016-12-05 09:55:37 -08:00
warning "If the install fails, you need to uninstall previous major version of Teamviewer"
[ -d data ] && rm -rf data
mkdir data
cd data
2018-04-04 02:30:13 -07:00
for datatar in ../data.tar.*; do
msg2 "Unpacking $datatar"
tar -xf $datatar
done
2019-05-18 10:39:38 -07:00
sed -i 's/NetworkManager-wait-online.service //g' ./opt/teamviewer/tv_bin/script/teamviewerd.service
sed -i '/function CheckQtQuickControls()/{N;a ls /usr/lib/qt/qml/QtQuick/Controls/qmldir &>/dev/null && return # ArchLinux
}' ./opt/teamviewer/tv_bin/script/teamviewer_setup || msg2 "Patching CheckQtQuickControls failed! Contact maintainer"
msg2 "Running teamviewer_setup checklibs"
./opt/teamviewer/tv_bin/script/teamviewer_setup checklibs \
|| msg2 "teamviewer_setup checklibs failed, contact maintainer with /tmp/teamviewerTARLibCheck/DependencyCheck.log" # Currently it always exits 0
2015-06-08 03:58:09 -07:00
}
package() {
# Install
2016-12-05 09:55:37 -08:00
warning "If the install fails, you need to uninstall previous major version of Teamviewer"
2017-11-16 09:45:42 -08:00
cp -dr --no-preserve=ownership ./data/{etc,opt,usr,var} "${pkgdir}"/
# Additional files
rm "${pkgdir}"/opt/teamviewer/tv_bin/xdg-utils/xdg-email
rm -rf "${pkgdir}"/etc/apt
install -D -m0644 "${pkgdir}"/opt/teamviewer/tv_bin/script/teamviewerd.service \
"${pkgdir}"/usr/lib/systemd/system/teamviewerd.service
install -d -m0755 "${pkgdir}"/usr/{share/applications,share/licenses/teamviewer}
ln -s /opt/teamviewer/License.txt \
"${pkgdir}"/usr/share/licenses/teamviewer/LICENSE
if [ "$CARCH" = "x86_64" ] && [ -f "${pkgdir}/opt/teamviewer/tv_bin/script/libdepend" ]; then
msg2 "Removing libdepend to ditch lib32 dependencies"
rm "${pkgdir}/opt/teamviewer/tv_bin/script/libdepend"
fi
2015-06-08 03:58:09 -07:00
}