package created using the webbuild interface [release 3.0.0-1mamba;Thu Jan 16 2025]
This commit is contained in:
parent
5f6bcb027b
commit
ab477da76d
@ -1,2 +1,4 @@
|
||||
# vmaf
|
||||
|
||||
VMAF is an Emmy-winning perceptual video quality assessment algorithm developed by Netflix. This software package includes a stand-alone C library libvmaf and its wrapping Python library. The Python library also provides a set of tools that allows a user to train and test a custom VMAF model.
|
||||
|
||||
|
77
vmaf.spec
Normal file
77
vmaf.spec
Normal file
@ -0,0 +1,77 @@
|
||||
Name: vmaf
|
||||
Version: 3.0.0
|
||||
Release: 1mamba
|
||||
Summary: Perceptual video quality assessment based on multi-method fusion
|
||||
Group: Applications/Graphics
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://github.com/Netflix/vmaf
|
||||
Source: https://github.com/Netflix/vmaf.git/v%{version}/vmaf-%{version}.tar.bz2
|
||||
License: BSD
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libstdc++6-devel
|
||||
## AUTOBUILDREQ-END
|
||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description
|
||||
VMAF is an Emmy-winning perceptual video quality assessment algorithm developed by Netflix. This software package includes a stand-alone C library libvmaf and its wrapping Python library. The Python library also provides a set of tools that allows a user to train and test a custom VMAF model.
|
||||
|
||||
%package -n lib%{name}
|
||||
Group: System/Libraries
|
||||
Summary: Shared libraries for %{name}
|
||||
|
||||
%description -n lib%{name}
|
||||
This package contains shared libraries for %{name}.
|
||||
|
||||
%package -n lib%{name}-devel
|
||||
Group: Development/Libraries
|
||||
Summary: Development files for %{name}
|
||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description -n lib%{name}-devel
|
||||
This package contains libraries and header files for developing applications that use %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
cd libvmaf
|
||||
%meson
|
||||
|
||||
# -Denable_avx512='false'
|
||||
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
cd libvmaf
|
||||
%meson_install
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/vmaf
|
||||
|
||||
%files -n lib%{name}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libvmaf.so.*
|
||||
%doc LICENSE
|
||||
|
||||
%files -n lib%{name}-devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_includedir}/libvmaf
|
||||
%{_includedir}/libvmaf/*.h
|
||||
%{_libdir}/libvmaf.a
|
||||
%{_libdir}/libvmaf.so
|
||||
%{_libdir}/pkgconfig/libvmaf.pc
|
||||
%doc README.md
|
||||
|
||||
%changelog
|
||||
* Thu Jan 16 2025 Silvan Calarco <silvan.calarco@mambasoft.it> 3.0.0-1mamba
|
||||
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user