blob: 7ed3cf077c5f57262102e216f00b82c3a68c8adb (
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
|
# Maintainer: dec05eba <dec05eba@protonmail.com>
pkgname=gpu-screen-recorder-ui
pkgver=r356.612fe6a
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' 'libcap')
depends=(
'gpu-screen-recorder'
'gpu-screen-recorder-notification'
'libglvnd'
'libx11'
'libxrandr'
'libxrender'
'libxcomposite'
'libxfixes'
'libxext'
'libxi'
'libxcursor'
'linux-api-headers'
'libpulse'
'libdrm'
'wayland'
)
source=("${pkgname}-${pkgver}.tar.gz::https://dec05eba.com/snapshot/gpu-screen-recorder-ui.git.${pkgver}.tar.gz")
sha512sums=('b33452cec6f4d7976e19b207078c18ddb7f1f24acaf5cadb15b0a8bbdd8183b0d888b92d31d21c7e3fbfb186838d3b98ef5841b9add08e21981dd0c235406910')
install="${pkgname}.install"
build() {
cd "$srcdir"
arch-meson build --buildtype=release -Dstrip=true
meson compile -C build
}
package() {
cd "$srcdir"
meson install -C build --destdir "$pkgdir"
}
|