From 7e328d4fc6441367f1a718539e615c9388ee272a Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 17 Jan 2025 14:26:27 +0100 Subject: [PATCH] package created using the webbuild interface [release 3.7.3-1mamba;Thu Jan 16 2025] --- README.md | 2 ++ avisynthplus.spec | 70 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 avisynthplus.spec diff --git a/README.md b/README.md index c73f884..2e173f2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # avisynthplus +AviSynth+ is an improved version of the AviSynth frameserver, with improved features and developer friendliness. + diff --git a/avisynthplus.spec b/avisynthplus.spec new file mode 100644 index 0000000..26c2450 --- /dev/null +++ b/avisynthplus.spec @@ -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 +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 3.7.3-1mamba +- package created using the webbuild interface