blob: 1fccd4ab11798e6162210f530c19d50f1b8628a8 (
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
|
# Maintainer: dec05eba <dec05eba@protonmail.com>
pkgname=gpu-screen-recorder-git
pkgver=r32.7471db2
pkgrel=1
pkgdesc='A shadowplay-like screen recorder for Linux. The fastest screen recorder for Linux.'
arch=('x86_64')
url="https://github.com/DEC05EBA/gpu-screen-recorder"
license=('GPL3')
depends=('glew' 'glfw-x11' 'ffmpeg' 'libxcomposite' 'libxdamage' 'alsa-lib' 'libpulse' 'nvidia-utils' 'cuda')
makedepends=('sibs')
provides=('gpu-screen-recorder')
conflicts=('gpu-screen-recorder')
source=("git+https://github.com/DEC05EBA/gpu-screen-recorder.git")
sha512sums=('SKIP')
pkgver() {
cd "$srcdir/gpu-screen-recorder"
printf "r%s.%s\n" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/gpu-screen-recorder"
sibs build --release
}
package() {
cd "$srcdir/gpu-screen-recorder"
install -D -m +x "sibs-build/$(sibs platform)/release/gpu-screen-recorder" "$pkgdir/usr/bin/gpu-screen-recorder"
}
|