-
Notifications
You must be signed in to change notification settings - Fork 0
/
vvdec.spec
62 lines (47 loc) · 1.57 KB
/
vvdec.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Name: vvdec
Version: 3.0.0
Release: 1%{?dist}
Summary: VVdeC, the Fraunhofer Versatile Video Decoder
License: BSD-3-Clause
URL: https://github.com/fraunhoferhhi/%{name}
Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
%description
VVdeC, the Fraunhofer Versatile Video Decoder, is a fast software H.266/VVC
decoder implementation supporting all features of the VVC Main10 profile.
%package libs
Summary: VVdeC, the Fraunhofer Versatile Video Encoder %{name} libraries
%description libs
The %{name}-devel package contains libraries and header files for developing
applications that use %{name}. This package contains the shared libraries.
%package devel
Summary: Development files for %{name}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%autosetup -p1
%build
%cmake -DVVDEC_INSTALL_VVDECAPP=ON
%cmake_build
%install
%cmake_install
%files
%{_bindir}/%{name}app
%files libs
%license LICENSE.txt
%doc README.md
%{_libdir}/lib%{name}.so.3
%{_libdir}/lib%{name}.so.%{version}
%files devel
%{_includedir}/%{name}/
%{_libdir}/cmake/%{name}/%{name}*.cmake
%{_libdir}/lib%{name}.so
%{_libdir}/pkgconfig/lib%{name}.pc
%changelog
* Mon Nov 11 2024 Simone Caronni <[email protected]> - 3.0.0-1
- Update to 3.0.0.
* Fri Aug 23 2024 Simone Caronni <[email protected]> - 2.3.0-1
- First build.