mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-04 06:57:57 +00:00
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>
18 lines
757 B
BlitzBasic
18 lines
757 B
BlitzBasic
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
|
|
}
|