Install this version:
emerge -a =media-video/obs-streamfx-0.12.0.9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =media-video/obs-streamfx-0.12.0.9999
Or alternatively:
emerge --autounmask-write -a =media-video/obs-streamfx-0.12.0.9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.12.0.9999 | 8 | 0 |
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake git-r3
#remove when stable release (make life easy later because of new submodules)
M_PV="0.12.0b366"
DESCRIPTION="OBSĀ® Studio plugin which adds many new effects."
HOMEPAGE="https://github.com/Xaymar/obs-StreamFX"
EGIT_REPO_URI="https://github.com/Xaymar/obs-StreamFX.git"
EGIT_COMMIT="${M_PV}"
# KEYWORDS="~amd64"
LICENSE="GPL-2"
SLOT="0"
RDEPEND="
media-video/obs-studio
"
src_prepare() {
default
#fix CMakeLists.txt libdir
sed -i 's|"lib/obs-plugins/"|"${CMAKE_INSTALL_LIBDIR}/obs-plugins/"|g' "${S}/CMakeLists.txt"
cmake_src_prepare
}
src_configure() {
local mycmakeargs+=(
-DSTRUCTURE_PACKAGEMANAGER=TRUE
-DPACKAGE_NAME="obs-streamfx"
)
cmake_src_configure
}