nv-codec-headers: add recipe

These headers are needed to build cuda/nvdec support for ffmpeg but it is
also a build dependency for gnome-remote-desktop where cuda support can't be disabled.

The Makefile has a hardcoded prefix. Instead of patching it and inherit autotools
just install the files manually. On the whole its what the Makefile does and it
looks easier this way.

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Markus Volk 2023-01-15 18:25:01 +01:00 committed by Khem Raj
parent ce71d78b9e
commit 9294503921

View File

@ -0,0 +1,17 @@
SUMMARY = "FFmpeg nvidia headers"
HOMEPAGE = "https://git.videolan.org/git/ffmpeg/nv-codec-headers.git"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${S}/include/ffnvcodec/dynlink_cuda.h;beginline=1;endline=26;md5=bb54a418154445b0aa99e15f640eacf4"
SRC_URI = "git://git.videolan.org/git/ffmpeg/nv-codec-headers.git;branch=master;protocol=https"
SRCREV = "f8ae7a49bfef2f99d2c931a791dc3863fda67bf3"
S = "${WORKDIR}/git"
do_install() {
install -d ${D}${includedir}/ffnvcodec ${D}${libdir}/pkgconfig
for file in include/ffnvcodec/*.h; do
install -m 644 "$file" ${D}${includedir}/ffnvcodec
done
install -m 644 ffnvcodec.pc.in ${D}${libdir}/pkgconfig/ffnvcodec.pc
sed -i "s|@@PREFIX@@|${prefix}|" ${D}${libdir}/pkgconfig/ffnvcodec.pc
}