media-video/gpu-screen-recorder: add 5.6.8

Signed-off-by: Dale Sweeney <agooglygooglr@gmail.com>
This commit is contained in:
Dale Sweeney
2025-09-15 13:31:14 -04:00
parent 6081a998de
commit 68b7ab2ecb
2 changed files with 49 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST gpu-screen-recorder-5.5.3.tar.gz 288876 BLAKE2B 19fccea7f6fbbf9bfbc55e4c09cb1baa440e33e93bf34d5e329f2b405d9363912df4b770651d89f3a5088606c79083cdd5e4e26926f54e1882312d003feb13cd SHA512 c333346e23d957a3fabb83b1ddf9755c474574af7e1cfdca9d496a286d4da1671747f2caecb70619b323dbdd1ceab1d58e0e6d5d4d01f05321d3fb2b51c40ebf
DIST gpu-screen-recorder-5.6.6.tar.gz 291996 BLAKE2B 320587f5e8d1af8f618316cc4f23639c12ac6a5294b300f4ff480b2f49848f89f91a779af8bc94086febe7898e2178de0d1f7d5c3a87644083122d1740bb2e7b SHA512 d6c33c3e825355bf627cb55a26ce09d706d904d6d7599d09f984b300c3ef468f4f1a6396ed6ed963847e9110ea950fe8c5d108e3bb6c50ede15cfe1475ab6168
DIST gpu-screen-recorder-5.6.8.tar.gz 293592 BLAKE2B 61065af0789fffc986c077bc25477f00adfbbdd7e5b37e8b859d3733dfe38cbbab9d468ac9dc8f01aa4e60edcdddad443ecafbc0cad271d29405b31daa417af5 SHA512 d63a05578864ebe78967676074aaf1f18f9dc17de64f57136b6a8968f2a70eaf1d07922c5a04950a95093ebe3940028cf7561e11114deda8d59f8bc5147067ba

View File

@@ -0,0 +1,48 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://repo.dec05eba.com/gpu-screen-recorder"
else
SRC_URI="https://dec05eba.com/snapshot/${PN}.git.${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"
KEYWORDS="~amd64"
fi
DESCRIPTION="A screen recorder that has minimal impact on system performance"
HOMEPAGE="https://git.dec05eba.com/gpu-screen-recorder/about"
LICENSE="GPL-3"
SLOT="0"
IUSE="+filecaps systemd"
DEPEND="
media-video/ffmpeg
media-libs/libglvnd
x11-libs/libXcomposite
x11-libs/libXrandr
x11-libs/libXfixes
media-libs/libpulse
media-libs/libva
x11-libs/libdrm
sys-libs/libcap
dev-libs/wayland
"
RDEPEND="${DEPEND}"
BDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
$(meson_use systemd)
$(meson_use filecaps capabilities)
)
meson_src_configure
}
src_install() {
meson_src_install
}