media-plugins/obs-source-record: add 0.4.7

Signed-off-by: Kai Krakow <kai@kaishome.de>
Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
This commit is contained in:
Kai Krakow
2026-03-15 14:01:35 +01:00
committed by Jimi Huotari
parent 9c64a94c99
commit e4ea9b7747
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST obs-source-record-0.4.6.tar.gz 67979 BLAKE2B 4b3047493c4a9affa2822b0c1458106b9049613f46a0d3678cefde64442292347d74119ea81fe07196abbd570e3f79bc7893aeb821ef32c87a07f4e79d727fea SHA512 5e393fb156744ade3ca3c129a030520ded0c76947688776bf7c02c47ab519b91f9115a990b568d32d14c22a56a15ed0b6b6f4c0855ca4f66bd36e87fcb1febe9
DIST obs-source-record-0.4.7.tar.gz 68367 BLAKE2B 8b28d6eb0ee5c77a8f0855f40f01e7c734f8eec73504c649161cb784fd62a6b37563901b7e3e9e1ced220d41e0ee05071d6f3781fb3a01a27c5f25856b0ec04e SHA512 704fdad7493960953de7cc54b23f7134466afef8242cf0d650766a074c2ec91de35ee543794ccb7cd7457c4fd07cc5fde10fbd1062028b24ce3c8b1baaf124e1

View File

@@ -0,0 +1,39 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Plugin for OBS Studio to make sources available to record via a filter"
HOMEPAGE="https://github.com/exeldro/obs-source-record"
if [[ ${PV} == 9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/exeldro/obs-source-record.git"
else
SRC_URI="https://github.com/exeldro/obs-source-record/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64"
fi
LICENSE="GPL-2"
SLOT="0"
DEPEND="
>=media-video/obs-studio-30.2.0
"
RDEPEND="${DEPEND}"
src_prepare() {
sed -i '/-Werror$/d' cmake/ObsPluginHelpers.cmake || die
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DLIB_OUT_DIR=/lib64/obs-plugins
-DLINUX_PORTABLE=OFF
)
cmake_src_configure
}