mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
media-plugins/obs-composite-blur: add 1.5.2
Part-of: https://github.com/gentoo/gentoo/pull/44360 Signed-off-by: Kai Krakow <kai@kaishome.de> Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
This commit is contained in:
parent
4d7bca70a3
commit
0fdb05ed48
@ -1 +1,2 @@
|
||||
DIST obs-composite-blur-1.5.1.tar.gz 10578800 BLAKE2B b7442be4146a8d3b08a68ff55f7f6e66e566ac3264cd3c99b6ce32d75d7910b19fcc8395bc7f3c4b6fd7bf9ed3978181be6b840fe8ca2fe5a13ce240a7594b94 SHA512 da63ea88372f95d501915bb3dd2018e0a7ad0ad6e11059ec1ba8ca5a396a01710875a4673192916dbccc333682339cdaf34185c844a076264ede52dcc8a903fa
|
||||
DIST obs-composite-blur-1.5.2.tar.gz 10579747 BLAKE2B 149aa4f0e1c3fffe36804aefdfeb199f750bc88e5b65d707ed937b2d8655039136101a3618dbff444d06c2c4175ba2ff99b9015f3348f0957e765f60d432b533 SHA512 60d3f944af4973809bb3116cad64d72377a30efc49816fbc4cc8364c63f073dd2fdd4f27eba759c48f213f3b81b30109b8aa246275b99abf05e69d216737d68e
|
||||
|
||||
@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="OBS plugin that provides different blur algorithms, and proper compositing"
|
||||
HOMEPAGE="https://github.com/FiniteSingularity/obs-composite-blur"
|
||||
|
||||
if [[ ${PV} == 9999 ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/FiniteSingularity/obs-composite-blur.git"
|
||||
else
|
||||
SRC_URI="https://github.com/FiniteSingularity/obs-composite-blur/archive/refs/tags/v${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
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user