package created using the webbuild interface [release 1.6.0-1mamba;Fri Nov 17 2023]

This commit is contained in:
Silvan Calarco 2024-01-05 17:22:32 +01:00
parent edd5336017
commit 9d6664b3ac
2 changed files with 48 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# rdfind
Rdfind is a program that finds duplicate files. It is useful for compressing backup directories or just finding duplicate files. It compares files based on their content, NOT on their file names.

46
rdfind.spec Normal file
View File

@ -0,0 +1,46 @@
Name: rdfind
Version: 1.6.0
Release: 1mamba
Summary: A program that finds duplicate files
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://rdfind.pauldreik.se/
Source: https://rdfind.pauldreik.se/rdfind-%{version}.tar.gz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libnettle-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
%description
Rdfind is a program that finds duplicate files. It is useful for compressing backup directories or just finding duplicate files. It compares files based on their content, NOT on their file names.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/rdfind
%{_mandir}/man1/rdfind.1*
%doc AUTHORS COPYING LICENSE
%changelog
* Fri Nov 17 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.0-1mamba
- package created using the webbuild interface