blob: ec29b824849631e374cfd423c2e3c0e7dd50c558 (
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
108
109
|
# Maintainer: Pellegrino Prevete <pellegrinoprevete@gmail.com>
_pkgname=barrier
pkgname=$_pkgname-git
pkgver=v2.3.3+153+g12024b9a
pkgrel=1
pkgdesc="Open-source KVM software based on Synergy"
arch=(any)
url="https://github.com/debauchee/barrier"
license=("custom:GPL2WithOpenSSLException")
source=(
"${pkgname}::git+${url}.git"
)
sha512sums=('SKIP')
depends=(
# Barrier core dependencies:
curl
avahi
libx11
libxrandr
libxext
libxinerama
xorgproto
libxtst
libxi
libsm
libice
openssl
)
makedepends=(
cmake
gmock
gtest
# Barrier GUI dependencies:
qt5-base
hicolor-icon-theme
)
pkgver() {
cd $pkgname
git describe --tags | sed 's/-/+/g'
}
prepare() {
cd $pkgname
for patch in "${srcdir?}"/*.patch; do
if [ -f "${patch?}" ]; then
patch -Np1 -i "${patch?}"
fi
done
}
build() {
cd $pkgname
mkdir -p build
cd build
cmake -G "Unix Makefiles" \
-D CMAKE_BUILD_TYPE:STRING=Release \
-D CMAKE_INSTALL_PREFIX:STRING=/usr \
-D BARRIER_REVISION:STRING=00000000 \
-D BARRIER_VERSION_STAGE:STRING=RELEASE \
-D BARRIER_USE_EXTERNAL_GTEST:bool=true \
..
make
}
_package_common() {
# Install binaries:
cd "${pkgname}/build"
DESTDIR="${pkgdir?}" make install
# Install the license:
cd ..
install -m 644 -D LICENSE "${pkgdir?}/usr/share/licenses/${pkgname?}/LICENSE"
# Install the manpages:
mkdir -p "${pkgdir?}/usr/share/man/man1"
install -m 644 doc/*.1 "${pkgdir?}/usr/share/man/man1"
# Install the examples:
mkdir -p "${pkgdir?}/usr/share/doc/${pkgname?}"
install -m 644 doc/barrier.conf* "${pkgdir?}/usr/share/doc/${pkgname?}"
}
package_barrier-git() {
pkgdesc="Open-source KVM software based on Synergy (GUI)"
depends=(
"barrier-headless-git"
qt5-base
hicolor-icon-theme
)
# Install all the files:
_package_common
# Now go and delete files that are already in
# barrier-headless:
for file in \
/usr/share/doc \
/usr/share/man \
/usr/bin/barrier{s,c} \
;do
rm -rf "${pkgdir:?}/${file:?}"
done
}
|