diff --git a/README.md b/README.md index 56f988b..7a6ea36 100644 --- a/README.md +++ b/README.md @@ -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. + diff --git a/rdfind.spec b/rdfind.spec new file mode 100644 index 0000000..8bfbd30 --- /dev/null +++ b/rdfind.spec @@ -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 +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 1.6.0-1mamba +- package created using the webbuild interface