Files
guru/media-video/obs-multi-rtmp/obs-multi-rtmp-0.6.0.1.ebuild
Adel KARA SLIMANE 85e54113f7 media-video/obs-multi-rtmp: add 0.6.0.1
Signed-off-by: Adel KARA SLIMANE <adel.ks@zegrapher.com>
2024-12-31 00:20:33 +01:00

51 lines
919 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="OBS Simulcast support plugin"
HOMEPAGE="https://github.com/sorayuki/obs-multi-rtmp"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/sorayuki/obs-multi-rtmp.git"
else
SRC_URI="https://github.com/sorayuki/obs-multi-rtmp/archive/refs/tags/$PV-obs31.tar.gz -> ${P}-obs31.tar.gz"
KEYWORDS="~amd64"
fi
S="${WORKDIR}/${P}-obs31"
LICENSE="GPL-2"
SLOT="0"
IUSE="+obs-frontend-api +qt"
DEPEND="
qt? ( dev-qt/qtbase:6 )
>=media-video/obs-studio-31
"
RDEPEND="
${DEPEND}
"
PATCHES=(
"${FILESDIR}/cmake.patch"
)
src_unpack() {
default
if [[ ${PV} == 9999 ]]; then
git-r3_src_unpack
fi
}
src_configure() {
local mycmakeargs+=(
-DENABLE_FRONTEND_API=$(usex obs-frontend-api ON OFF)
-DENABLE_QT=$(usex qt ON OFF)
)
cmake_src_configure
}