Files
libvpl/libvpl.spec
Stefan Dirsch 82a93eae8a - Update to version 2.15.0:
+ Added:
    - Intel® VPL API 2.15 support, including new property-based
      capabilities query interface, extended decoder and encoder
      capabilities reporting, and definitions for VVC Main 10 Still
      Picture profile and level 6.3.
    - Explicit INSTALL_EXAMPLES build option to control
      installation of example source code and content.
  + Changed:
    - Default Ubuntu build to 24.04
    - Model demonstrated in interop example to a vehicle detection
      model.
  + Fixed: BUILD_EXAMPLES build option requiring INSTALL_DEV to
    have any effect.
  + Removed: Outdated Dockerfiles provided with examples.
  + Known Issues: vpl-infer unable to load model if built in debug
    mode.

OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libvpl?expand=0&rev=44
2025-05-13 08:10:12 +00:00

102 lines
2.8 KiB
RPMSpec

#
# spec file for package libvpl
#
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%if 0%{?suse_version} < 1550
%define _distconfdir %{_prefix}%{_sysconfdir}
%endif
%global sover 2
Name: libvpl
%define lname libvpl%{sover}
Version: 2.15.0
Release: 0
Summary: oneAPI Video Processing Library (oneVPL) dispatcher, tools, and examples
License: MIT
Group: Development/Languages/C and C++
URL: https://github.com/intel/libvpl
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz#/libvpl-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: pkgconfig
BuildRequires: pkgconfig(libva)
BuildRequires: pkgconfig(wayland-client)
%if 0%{?suse_version} > 1600
ExclusiveArch: x86_64 %ix86 aarch64
%else
ExclusiveArch: x86_64 aarch64
%endif
%description
The oneAPI Video Processing Library (oneVPL) provides a single video processing
API for encode, decode, and video processing that works across a wide range of
accelerators.
%package -n %lname
Summary: oneAPI Video Processing Library (oneVPL) dispatcher
Group: System/Libraries
%description -n %lname
The oneAPI Video Processing Library (oneVPL) provides a single video processing
API for encode, decode, and video processing that works across a wide range of
accelerators.
%package devel
Summary: Development files for oneAPI Video Processing Library (oneVPL) dispatcher
Group: Development/Languages/C and C++
Requires: %lname = %version
%description devel
This package contains the development headers and pkgconfig files for
the oneAPI Video Processing Library (oneVPL) dispatcher
%prep
%autosetup -p1 -n libvpl-%{version}
%build
%cmake \
%{nil}
%cmake_build
%install
%cmake_install
%ldconfig_scriptlets -n %lname
%files
%doc README.md third-party-programs.txt
%files -n %lname
%license LICENSE
%dir %{_distconfdir}
#%dir %{_distconfdir}/modulefiles
%dir %{_distconfdir}/vpl
#%{_distconfdir}/modulefiles/vpl
%{_distconfdir}/vpl/vars.sh
%{_libdir}/libvpl.so.%{sover}
%{_libdir}/libvpl.so.%{sover}.*
%files devel
%doc
%{_includedir}/vpl/
%{_libdir}/libvpl.so
%{_libdir}/pkgconfig/vpl.pc
%{_libdir}/cmake/vpl/
%{_datadir}/vpl/
%changelog