From 786870711ef99a4ad6a6e3615e0721660400e2c6 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 17 Jan 2025 14:26:43 +0100 Subject: [PATCH] package created using the webbuild interface [release 70.11-1mamba;Thu Jan 16 2025] --- README.md | 2 ++ vapoursynth.spec | 79 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 vapoursynth.spec diff --git a/README.md b/README.md index 4a98c2d..3fff992 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # vapoursynth +A video processing framework with simplicity in mind. + diff --git a/vapoursynth.spec b/vapoursynth.spec new file mode 100644 index 0000000..b9a8923 --- /dev/null +++ b/vapoursynth.spec @@ -0,0 +1,79 @@ +Name: vapoursynth +Version: 70.11 +Release: 1mamba +Summary: A video processing framework with simplicity in mind +Group: Applications/Graphics +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.vapoursynth.com/ +Source: https://github.com/vapoursynth/vapoursynth.git/R%{version}/vapoursynth-%{version}.tar.bz2 +License: LGPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libpython3-devel +BuildRequires: libpython311-devel +BuildRequires: libstdc++6-devel +BuildRequires: libzimg-devel +## AUTOBUILDREQ-END +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +A video processing framework with simplicity in mind. + +%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 +./autogen.sh + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/vspipe + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libvapoursynth-script.so.* +%{python3_sitearch}/vapoursynth.so +%doc COPYING.LESSER + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/vapoursynth +%{_includedir}/vapoursynth/* +%{_libdir}/libvapoursynth-script.a +%{_libdir}/libvapoursynth-script.so +%{_libdir}/libvapoursynth.a +%{_libdir}/libvapoursynth.so +%{_libdir}/pkgconfig/vapoursynth-script.pc +%{_libdir}/pkgconfig/vapoursynth.pc +%doc ChangeLog README.md + +%changelog +* Thu Jan 16 2025 Silvan Calarco 70.11-1mamba +- package created using the webbuild interface