Files
guru/media-libs/vvdec/vvdec-2.1.2.ebuild
Benoît Dufour 4bc58963a6 media-libs/vvdec: new package, add 2.1.2
Signed-off-by: Benoît Dufour <benoit.dufour@mail.com>
2023-10-30 22:40:21 -04:00

37 lines
819 B
Bash

# 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
}