guru/media-video/obs-streamfx/obs-streamfx-0.12.0.9999.ebuild
Gonçalo Negrier Duarte b0d1800db5
media-video/obs-streamfx: use EGIT_COMMIT to use a tag
Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte@gmail.com>
2024-02-22 18:06:22 +00:00

42 lines
814 B
Bash

# 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
}