media-libs/vvdec: new package, add 2.1.2

Signed-off-by: Benoît Dufour <benoit.dufour@mail.com>
This commit is contained in:
Benoît Dufour
2023-10-30 22:40:21 -04:00
parent cf02bf8c0f
commit 4bc58963a6
2 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST v2.1.2.tar.gz 1269636 BLAKE2B 1fd9dbc908e9ee8ad6ca7ae4de6866030726c087409e635a0abd461264951f5b9fda0abb6d125b92cd022ebe5147de72515277e520df8e481e1d558828e7c633 SHA512 41609b6f36d402e97bf1ee7f8812d7b3a14226b24be5446cb785aaa63c0176613d2d3bf881605f8e5dff944646d5ed77f1f480a587b30b4d9351146834ee9cd8

View File

@@ -0,0 +1,36 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="The Fraunhofer Versatile Video Decoder (VVdeC) is a fast H.266/VVC software decoder implementation."
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"
LICENSE="BSD-3-Clause-Clear"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() {
local mycmakeargs=(
-DVVDEC_INSTALL_VVDECAPP="ON"
)
cmake_src_configure
}
src_install() {
#dobin "${BUILD_DIR}/vvdec"
#dobin "${BUILD_DIR}/vvdecapp"
#dolib "${BUILD_DIR}"
#insinto /usr/share/${PN}
#doins -r res/*
#make_desktop_entry /usr/bin/${PN}
cmake_src_install
}