blob: 49db17ab92a139f433d2acbed73784b9a237280a (
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
|
# Maintainer: dec05eba <dec05eba@protonmail.com>
pkgname=gpu-screen-recorder-ui
pkgver=r133.9661f0b
pkgrel=1
pkgdesc='A fullscreen overlay UI for GPU Screen Recorder in the style of ShadowPlay'
arch=('x86_64')
url="https://git.dec05eba.com/gpu-screen-recorder-ui"
license=('GPL-3.0-only')
makedepends=('meson')
depends=(
'gpu-screen-recorder'
'gpu-screen-recorder-notification'
'libglvnd'
'libx11'
'libxrandr'
'libxrender'
'libxcomposite'
'libxfixes'
'libxi'
'libevdev'
'systemd-libs'
'libinput'
'libxkbcommon'
)
source=("${pkgname}-${pkgver}.tar.gz::https://dec05eba.com/snapshot/gpu-screen-recorder-ui.git.${pkgver}.tar.gz")
sha512sums=('021df8ea5b281adf2569eee95f80e43ae4b369a4d2e7603e2e9115b6e45f5a3b6e0fec226b5673c8bd1bcfb0e86944a82940196fc7cf3d87bd15faf83d3fb4d5')
install="${pkgname}.install"
build() {
cd "$srcdir"
arch-meson build
meson compile -C build
}
package() {
cd "$srcdir"
meson install -C build --destdir "$pkgdir"
}
|