src_prepare-overlay/media-libs/olivecore/olivecore-9999.ebuild
Alfred Wingate eed5795993
media-libs/olivecore: new package, add 9999
Signed-off-by: Alfred Wingate <parona@protonmail.com>
2024-01-18 14:22:09 +02:00

36 lines
621 B
Bash

# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake git-r3
DESCRIPTION="Common components shared between Olive libraries"
HOMEPAGE="
https://olivevideoeditor.org/
https://github.com/olive-editor/core/
"
EGIT_REPO_URI="https://github.com/olive-editor/core/"
LICENSE="GPL-3"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
dev-libs/imath
media-libs/opentimelineio
>=media-video/ffmpeg-3.0:=
virtual/opengl
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DOLIVECORE_BUILD_TESTS=$(usex test)
)
cmake_src_configure
}