blob: 13185f6544b9a0f290f1b0ad793b496f60a5f92a (
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
|
# Maintainer: dec05eba <dec05eba@protonmail.com>
pkgname=gpu-screen-recorder-git
pkgver=r148.1a7fd28
pkgrel=1
pkgdesc='A shadowplay-like screen recorder for Linux. The fastest screen recorder for Linux.'
arch=('x86_64')
url="https://git.dec05eba.com/gpu-screen-recorder"
license=('GPL3')
depends=('ffmpeg' 'libglvnd' 'libxcomposite' 'libx11' 'libpulse' 'cuda')
optdepends=(
'nvlax: For recording one or multiple monitors using NvFBC'
)
provides=('gpu-screen-recorder')
conflicts=('gpu-screen-recorder')
source=("${pkgname}-${pkgver}.tar.gz::https://dec05eba.com/snapshot/gpu-screen-recorder.git.r148.1a7fd28.tar.gz")
sha512sums=('58708df316003b65fc3730b64d7dfa6e4469e402ad1ba13bcb19601ba25c58f65ba86c3e85c3e4a6040889de54a28f47671f2ec7fb5557e2a99d643a39332b67')
build() {
cd "$srcdir"
./build.sh
}
package() {
cd "$srcdir"
install -Dm755 "gpu-screen-recorder" "$pkgdir/usr/bin/gpu-screen-recorder"
}
|