package created using the webbuild interface [release 3.7.3-1mamba;Thu Jan 16 2025]

This commit is contained in:
Silvan Calarco 2025-01-17 14:26:27 +01:00
parent 45141b1e5f
commit 7e328d4fc6
2 changed files with 72 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# avisynthplus # avisynthplus
AviSynth+ is an improved version of the AviSynth frameserver, with improved features and developer friendliness.

70
avisynthplus.spec Normal file
View File

@ -0,0 +1,70 @@
Name: avisynthplus
Version: 3.7.3
Release: 1mamba
Summary: An improved version of the AviSynth frameserver, with improved features and developer friendliness
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://avs-plus.net/
Source: https://github.com/AviSynth/AviSynthPlus.git/v%{version}/AviSynthPlus-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libdevil-devel
BuildRequires: libgcc
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
%description
AviSynth+ is an improved version of the AviSynth frameserver, with improved features and developer friendliness.
%package -n lib%{name}
Group: System/Libraries
Summary: An improved version of the AviSynth frameserver, with improved features and developer friendliness
%description -n lib%{name}
AviSynth+ is an improved version of the AviSynth frameserver, with improved features and developer friendliness.
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 -n AviSynthPlus-%{version}
%build
%cmake
%cmake_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%cmake_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files -n lib%{name}
%defattr(-,root,root)
%{_libdir}/libavisynth.so.*
%dir %{_libdir}/avisynth
%{_libdir}/avisynth/lib*.so
%files -n lib%{name}-devel
%defattr(-,root,root)
%dir %{_includedir}/avisynth
%{_includedir}/avisynth/*
%{_libdir}/libavisynth.so
%{_libdir}/pkgconfig/avisynth.pc
%doc README.md
%changelog
* Thu Jan 16 2025 Silvan Calarco <silvan.calarco@mambasoft.it> 3.7.3-1mamba
- package created using the webbuild interface