blob: 0ba3b62bf83f28dd4905e2ff993e80c8abcedb9f (
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
|
# Maintainer: OpenCom Release Automation <don@opencom.online>
# Generated by client/scripts/stage-aur.mjs
pkgname=opencom-bin
pkgver=0.2.4
pkgrel=1
pkgdesc='Desktop wrapper for OpenCom frontend'
arch=(
'x86_64'
)
url='https://opencom.online'
license=(
'GPL3'
)
depends=(
'alsa-lib'
'at-spi2-core'
'cairo'
'cups'
'dbus'
'gcc-libs'
'glib2'
'gtk3'
'libdrm'
'libx11'
'libxcomposite'
'libxdamage'
'libxext'
'libxfixes'
'libxkbcommon'
'libxrandr'
'mesa'
'nspr'
'nss'
'pango'
'systemd-libs'
'xdg-utils'
)
optdepends=(
'pipewire: Wayland screen sharing support'
)
provides=(
'opencom'
)
conflicts=(
'opencom'
)
source=(
'OpenCom.tar.gz::https://opencom.online/downloads/OpenCom.tar.gz'
'opencom.desktop'
'opencom.png'
)
sha256sums=('SKIP'
'SKIP'
'SKIP')
package() {
install -dm755 "$pkgdir/opt/opencom"
cp -a "$srcdir/OpenCom/." "$pkgdir/opt/opencom/"
install -dm755 "$pkgdir/usr/bin"
ln -sf "/opt/opencom/opencom-client" "$pkgdir/usr/bin/opencom"
install -Dm644 "$srcdir/opencom.desktop" "$pkgdir/usr/share/applications/opencom.desktop"
install -Dm644 "$srcdir/opencom.png" "$pkgdir/usr/share/pixmaps/opencom.png"
}
|