blob: f8d97efd7d7372bf4e2c2c95b749ef169dd0a5e9 (
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
|
# Maintainer:
_pkgname="gpu-screen-recorder-notification"
pkgname="$_pkgname-git"
pkgver=1.0.7.r0.g1d19340
pkgrel=1
pkgdesc="Notification in the style of ShadowPlay"
url="https://git.dec05eba.com/gpu-screen-recorder-notification"
license=('GPL-3.0-only')
arch=('x86_64')
depends=(
'libglvnd'
'libx11'
'libxrandr'
'libxrender'
'libxext'
'wayland'
)
makedepends=(
'git'
'meson'
)
provides=("$_pkgname")
conflicts=("$_pkgname")
_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+$(sed 's&//git\.&//repo.&' <<< "$url")")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \
| sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
}
build() {
arch-meson "$_pkgsrc" build
meson compile -C build
}
check() {
meson test -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|