blob: 775b8ff2f72f1a87975e1ccd8d2e7b8948bd516d (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Maintainer: SharkEzz <icraft640@gmail.com>
# Co-Maintainer: guzzisti <rwagner at rw-net dot de>
# Contributor: James Bunton <jamesbunton@delx.net.au>
# The latest version can be found like this:
# $ curl -s https://bluejeans.com/downloads | grep 'desktop/linux'
pkgname=bluejeans
pkgver=2.22.0
pkgrel=1
pkgdesc="BlueJeans desktop app for video calls"
arch=('x86_64')
url="https://www.bluejeans.com"
license=('Proprietary')
groups=()
depends=('alsa-lib'
'atk'
'bzip2'
'cairo'
'dbus'
'dbus-glib'
'expat'
'fontconfig'
'freetype2'
'gcc-libs'
'gdk-pixbuf2'
'glib2'
'glibc'
'graphite'
'gtk2'
'harfbuzz'
'libcap'
'libdatrie'
'libdrm'
'libffi'
'libgcrypt'
'libgl'
'libgpg-error'
'libnotify'
'libpng'
'libsystemd'
'libthai'
'libutil-linux'
'libx11'
'libxau'
'libxcb'
'libxcomposite'
'libxcursor'
'libxdamage'
'libxdmcp'
'libxext'
'libxfixes'
'libxi'
'libxinerama'
'libxrandr'
'libxrender'
'libxshmfence'
'libxtst'
'libxxf86vm'
'lz4'
'mesa'
'nspr'
'nss'
'pango'
'pcre'
'pixman'
'pulseaudio'
'wayland'
'xz'
'zlib')
install=bluejeans.install
source=(BlueJeans-${pkgver}.rpm::https://swdl.bluejeans.com/desktop-app/linux/${pkgver}/BlueJeans_${pkgver}.87.rpm)
sha256sums=('d27a1b9fe61cbea6a4c2f05d928109af31e82fe386ca6db327cd3aa1469b61fa')
package() {
# add bluejeans wrapper to /usr/bin
mkdir -p "${pkgdir}/usr/bin"
ln -nsf "/opt/BlueJeans/bluejeans-v2" "${pkgdir}/usr/bin/bluejeans"
# move the rest of the files into the package directory
mv "opt" "${pkgdir}/"
mv "usr/share" "${pkgdir}/usr/"
}
|