teamviewer/PKGBUILD

64 lines
2.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
pkgver=13.1.3026
pkgrel=9
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')
depends_x86_64=(
'hicolor-icon-theme'
'qt5-webkit'
'qt5-x11extras'
'lib32-libxtst'
2016-03-07 06:23:18 -08:00
'lib32-libpng12'
2016-06-28 04:24:24 -07:00
'lib32-libjpeg6-turbo'
'lib32-libxinerama'
'lib32-qt4')
depends_i686=(
'hicolor-icon-theme'
'qt5-webkit'
'qt5-x11extras'
'libxtst'
'libpng12'
2016-06-28 04:24:24 -07:00
'libjpeg6-turbo'
'libxinerama'
'qt4')
depends_armv7h=(${depends_i686[*]})
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")
#source_armv7h=("https://dl.tvcdn.de/download/linux/version_${pkgver%%.*}x/teamviewer_${pkgver}_armhf.deb")
source_armv7h=("https://dl.tvcdn.de/download/linux/version_${pkgver%%.*}x/teamviewer-host_13.1.1548_armhf.deb")
sha256sums_i686=('46f1b697a113f304ff8e5792f9893319c0de6b802355e7e5fdf7dba6f4b415c8')
sha256sums_x86_64=('33eacc8ebeaf34aea5fa932e3d80553f358629ad454740f05aafba267b50ea93')
sha256sums_armv7h=('d887c4faae3b85542e982dbb8add5271fdeb1da98c669b230d82dd56e04724bf')
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
2017-11-16 09:45:42 -08:00
tar -xf ../data.tar.bz2
tar -xf ../data.tar.xz
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
2015-06-08 03:58:09 -07:00
}