package created using the webbuild interface [release 1.637-1mamba;Wed Jul 29 2015]

This commit is contained in:
Silvan Calarco 2024-01-05 23:53:30 +01:00
parent 9593f1d90d
commit 22539df74f
2 changed files with 55 additions and 0 deletions

View File

@ -1,2 +1,6 @@
# imapsync
imapsync - IMAP synchronisation, sync, copy or migration tool.
Synchronises mailboxes between two imap servers. Good at IMAP migration.
More than 52 different IMAP server softwares supported with success, few failures.

51
imapsync.spec Normal file
View File

@ -0,0 +1,51 @@
Name: imapsync
Version: 1.637
Release: 1mamba
Summary: IMAP synchronisation, sync, copy or migration tool
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/imapsync/imapsync
## GITSOURCE https://github.com/imapsync/imapsync.git imapsync-1.637
Source: https://github.com/imapsync/imapsync.git/imapsync-%{version}/imapsync-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: perl-File-Copy-Recursive
BuildRequires: perl-IO-Tee
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
imapsync - IMAP synchronisation, sync, copy or migration tool.
Synchronises mailboxes between two imap servers. Good at IMAP migration.
More than 52 different IMAP server softwares supported with success, few failures.
%debug_package
%prep
%setup -q
%build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_bindir}/imapsync
%{_mandir}/man1/imapsync.1*
%doc CREDITS LICENSE
%changelog
* Wed Jul 29 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.637-1mamba
- package created using the webbuild interface