blob: 0a9ff0bc051017586f25b837c9009c78701f71fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Maintainer: Moritz Oberjatzas <post@moritz-oberjatzas.eu>
# Contributor: Alexander Sulfrian <asulfrian@zedat.fu-berlin.de>
pkgname=webex-bin
pkgver=44.10.1.31028
pkgrel=1
pkgdesc="Webex for Linux"
arch=('x86_64')
url="https://www.webex.com/"
license=('custom')
depends=('alsa-lib'
'at-spi2-atk'
'at-spi2-core'
'atk'
'binutils'
'krb5'
'libcups'
'libnotify'
'libpulse'
'libsecret'
'libxcb'
'libxcrypt-compat'
'libxkbcommon-x11'
'libxss'
'mesa'
'nspr'
'nss'
'pango'
'systemd-libs'
'upower'
'wayland'
'xcb-util-image'
'xcb-util-keysyms'
'xcb-util-renderutil'
'xcb-util-wm'
'xdg-utils')
source=("$pkgname-$pkgver.deb::https://binaries.webex.com/WebexDesktop-Ubuntu-Gold/20241022103918/Webex.deb"
'webex.xml')
sha256sums=('f654a57bb75d493fa3133bf2dc8683c858c7dd6bfe52f616273c20f080944a97'
'736a3ee2f30c947493eb01787205fc650f08a664a2c6a4a17c4189b8e2420c5a')
options=('!strip')
prepare() {
mkdir -p "$pkgname-$pkgver"
tar -Jxf data.tar.xz -C "$pkgname-$pkgver"
}
package() {
cd "$pkgname-$pkgver"
cp -dpr --no-preserve=ownership opt/ "$pkgdir/"
rm "$pkgdir/opt/Webex/lib/libstdc++.so.6"
mkdir -p "$pkgdir/usr/share/applications/"
mv "$pkgdir/opt/Webex/bin/webex.desktop" "$pkgdir/usr/share/applications/"
mkdir -p "$pkgdir/usr/share/mime/packages/"
install -m0644 "${srcdir}/webex.xml" "${pkgdir}/usr/share/mime/packages/"
mkdir -p "$pkgdir/usr/bin/"
ln -s "/opt/Webex/bin/CiscoCollabHost" "$pkgdir/usr/bin/webex"
}
|