diff options
author | Lim Siew Hoon <siew.hoon.lim@intel.com> | 2024-10-09 16:33:57 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2024-10-10 09:07:34 +0800 |
commit | 3b4ab5676dcfc66d976e634b215fa003a4b38599 (patch) | |
tree | 7a3f098249215941d5d6e9ce2715304d6372d8d5 | |
parent | 9bc4ada2f26bcb5a4258751cac9eef65c4cfbfbe (diff) | |
download | meta-intel-3b4ab5676dcfc66d976e634b215fa003a4b38599.tar.gz |
libvpl-tools: add 1.0.0 version
Command line tools application that remove from libvpl
start from 2.11.0 version.
Release notes:
https://github.com/intel/libvpl-tools/releases/tag/v1.0.0
Signed-off-by: Lim Siew Hoon <siew.hoon.lim@intel.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r-- | recipes-multimedia/vpl/libvpl-tools_1.0.0.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/recipes-multimedia/vpl/libvpl-tools_1.0.0.bb b/recipes-multimedia/vpl/libvpl-tools_1.0.0.bb new file mode 100644 index 00000000..b489d25d --- /dev/null +++ b/recipes-multimedia/vpl/libvpl-tools_1.0.0.bb | |||
@@ -0,0 +1,39 @@ | |||
1 | SUMMARY = "Intel Video Processing Library Tools" | ||
2 | DESCRIPTION = "Intel Video Processing Library (VPL) Tools provides \ | ||
3 | access to hardware accelerated video decode, encode and video processing \ | ||
4 | capabilities on IntelĀ® GPUs use cases." | ||
5 | |||
6 | HOMEPAGE = "https://github.com/intel/libvpl-tools" | ||
7 | LICENSE = "MIT" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c18ea6bb4786a26bf4eee88a7424a408 \ | ||
9 | file://third-party-programs.txt;md5=ddf05049184e74942f45b0ca4cc69b8a" | ||
10 | |||
11 | SRC_URI = "git://github.com/intel/libvpl-tools.git;protocol=https;branch=main \ | ||
12 | " | ||
13 | |||
14 | SRCREV = "452ab253da13b57067222e8311ef143d0203d766" | ||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | inherit cmake | ||
18 | DEPENDS += "libva libvpl pkgconfig-native" | ||
19 | |||
20 | PACKAGECONFIG ??= "tools" | ||
21 | PACKAGECONFIG[tools] = "-DENABLE_WAYLAND=ON, -DENABLE_WAYLAND=OFF, wayland wayland-native wayland-protocols" | ||
22 | |||
23 | do_install:append() { | ||
24 | mkdir -p ${D}${datadir}/VPL/samples | ||
25 | mv ${D}${bindir}/sample_* ${D}${datadir}/VPL/samples | ||
26 | mv ${D}${bindir}/metrics_monitor ${D}${datadir}/VPL/samples | ||
27 | } | ||
28 | |||
29 | COMPATIBLE_HOST = '(x86_64).*-linux' | ||
30 | |||
31 | FILES_SOLIBSDEV = "" | ||
32 | |||
33 | FILES:${PN} += " ${datadir}/VPL/samples \ | ||
34 | ${libdir}/libcttmetrics.so \ | ||
35 | ${libdir}/vpl-tools/libvpl_wayland.so \ | ||
36 | " | ||
37 | |||
38 | FILES:${PN}-doc += " ${datadir}/vpl-tools \ | ||
39 | " | ||