From 9d6664b3ac2f658efdcc313d48b0d1dcb8beb4bf Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 17:22:32 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.6.0-1mamba;Fri Nov 17 2023] --- README.md | 2 ++ rdfind.spec | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 rdfind.spec 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