blob: 424f456257939f8386717ffb4c31222c350fa2f7 (
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
|
# Maintainer: Omar Pakker <archlinux@opakker.nl>
pkgbase=looking-glass
pkgname=("${pkgbase}"
"${pkgbase}-module-dkms"
# "${pkgbase}-host"
"obs-plugin-${pkgbase}")
epoch=2
pkgver=B7
pkgrel=6
pkgdesc="An extremely low latency KVMFR (KVM FrameRelay) implementation for guests with VGA PCI Passthrough"
url="https://looking-glass.io/"
arch=('x86_64')
license=('GPL-2.0-or-later')
makedepends=('cmake' 'fontconfig' 'libpipewire' 'libpulse'
'libsamplerate' 'libxi' 'libxpresent' 'libxss' 'obs-studio'
'spice-protocol' 'wayland-protocols')
source=("looking-glass-${pkgver}.tar.gz::https://looking-glass.io/artifact/${pkgver}/source"
"1197-backport.patch")
sha512sums=('a3f0193451c64dbd9ead01538fa53cc78b42d318d54b2eef026fb730811e055bb140b67dcd91c1da5ef09ec74fbb141c791b53264a56a943308b81a6e49e1e93'
'7e927d6cae8190dba46be59e64862f327f5226e4baa3116559aa92174d9c8b7e6752a356fe67bb144036c36f1a95b2379d4b2efa5f4f09775bcbbe03107dcaac')
_lgdir="${pkgbase}-${pkgver}"
prepare() {
cd "${srcdir}/${_lgdir}"
for patch in "${srcdir}"/*.patch; do
patch -p1 < "${patch}"
done
}
build() {
cd "${srcdir}/${_lgdir}"
local components=(
"client"
# "host"
"obs"
)
for b in "${components[@]}"; do
mkdir "${b}/build"
pushd "${b}/build"
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
popd
done
}
package_looking-glass() {
pkgdesc="A client application for accessing the LookingGlass IVSHMEM device of a VM"
depends=('binutils' 'fontconfig' 'gcc-libs' 'glibc' 'gmp' 'hicolor-icon-theme'
'libegl' 'libgl' 'libpipewire' 'libpulse' 'libsamplerate' 'libx11'
'libxcursor' 'libxfixes' 'libxi' 'libxinerama' 'libxkbcommon' 'libxpresent'
'libxss' 'nettle' 'wayland' 'zlib' 'zstd')
cd "${srcdir}/${_lgdir}/client/build"
make DESTDIR="${pkgdir}" install
}
package_looking-glass-module-dkms() {
pkgdesc="A kernel module that implements a basic interface to the IVSHMEM device for when using LookingGlass in VM->VM mode"
depends=('dkms')
cd "${srcdir}/${_lgdir}/module"
install -Dm644 -t "${pkgdir}/usr/src/${pkgbase}-${pkgver}" \
Makefile \
dkms.conf \
kvmfr.{h,c}
}
#package_looking-glass-host() {
# pkgdesc="Linux host application for pushing frame data to the LookingGlass IVSHMEM device"
# depends=('binutils' 'gcc-libs' 'glib2' 'glibc'
# 'libpipewire' 'libxcb' 'zlib' 'zstd')
# install="host.install"
#
# cd "${srcdir}/${_lgdir}/host/build"
# make DESTDIR="${pkgdir}" install
#}
package_obs-plugin-looking-glass() {
pkgdesc="Plugin for OBS Studio to stream directly from Looking Glass without having to record the Looking Glass client"
depends=('glibc' 'obs-studio')
install -Dm644 -t "${pkgdir}/usr/lib/obs-plugins" \
"${srcdir}/${_lgdir}/obs/build/liblooking-glass-obs.so"
}
|