mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
26 lines
579 B
Bash
26 lines
579 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="VVenC, the Fraunhofer Versatile Video Encoder"
|
|
HOMEPAGE="https://www.hhi.fraunhofer.de/en/departments/vca/technologies-and-solutions/h266-vvc.html"
|
|
SRC_URI="https://github.com/fraunhoferhhi/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
|
|
LICENSE="Clear-BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DVVENC_INSTALL_FULLFEATURE_APP="ON"
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
}
|