blob: 9c638c63a828a2691abbe17a9d2483e08d53ee28 (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# Maintainer: David Grimm < david[dot]dg[dot]grimm [replace this with the swirly a sign] gmail[dot]com >
pkgname=ov-client
pkgver="0.27.1"
pkgrel=1
epoch=
pkgdesc="Client to share and receive spatial realtime Audio"
arch=('x86_64'
'arm64'
'armhf'
'aarch64'
)
url="https://ovbox.de"
license=('GPL-3.0-only')
groups=()
depends=('jack2'
'liblo'
'libsndfile'
'fftw'
'gsl'
'gtkmm3'
'gtk3'
'cairomm'
'hicolor-icon-theme'
'xerces-c'
'glibmm'
'atkmm'
'libsamplerate'
'libmatio'
'libltc'
'libsigc++'
'alsa-lib'
'gcc-libs'
'glibmm'
'glibc'
'glib2'
'nlohmann-json'
'realtime-privileges'
'eigen'
'boost'
'libxml++2.6'
'curl'
'nodejs'
)
makedepends=('git'
'bash'
'make'
'cmake'
'cunit'
'gcc'
'vim'
'pkg-config')
checkdepends=()
optdepends=()
provides=('ov-client'
'ovbox')
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=()
noextract=()
b2sums=()
validpgpkeys=()
prepare() {
if [ "$(ls ov-client)" == "" ]
then
git clone https://github.com/gisogrimm/ov-client.git
else
cd ov-client
git checkout master
cd ..
fi
cd ov-client
git pull
git submodule update --init --recursive
git checkout -q fa6e706b43f6344d3b3611e43ecf571691491d9e
}
build() {
cd ov-client
# the make routine only works on a clean repository
make clean
make -j
rm build/*.*
}
# cmake fails to detect a working c++ compiler and is needed by google test
#check() {
# cd ov-client
# make libtest
#}
package() {
cd ov-client
make PREFIX="${pkgdir}/usr" install
echo "
INFO:
To use OV-Client, please create an account at https://box.orlandoviols.com
To use a different server, start with the option \"-s [URL]\"
For minimal stuttering, please enable realtime privileges:
\$ usermod -a -G realtime \$USER
"
}
|