OBS-URL: https://build.opensuse.org/package/show/utilities/rdfind?expand=0&rev=7
70 lines
2.0 KiB
RPMSpec
70 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package rdfind
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC
|
|
# Copyright (c) 2014 Johannes Kastl
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: rdfind
|
|
Version: 1.7.0
|
|
Release: 0
|
|
Summary: Find duplicate files and replace them with symlinks or hardlinks
|
|
License: GPL-2.0-or-later
|
|
Group: System/Management
|
|
URL: https://rdfind.pauldreik.se/
|
|
Source0: https://rdfind.pauldreik.se/%{name}-%{version}.tar.gz
|
|
Source1: https://rdfind.pauldreik.se/%{name}-%{version}.tar.gz.asc
|
|
# delete once upstream gets rid of autotools or they are fixed
|
|
BuildRequires: autoconf
|
|
%if 0%{?suse_version} < 1600
|
|
BuildRequires: gcc13-c++
|
|
%else
|
|
BuildRequires: gcc-c++
|
|
%endif
|
|
BuildRequires: libnettle-devel
|
|
BuildRequires: make
|
|
|
|
%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.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
# for this bug: https://savannah.gnu.org/support/?110983
|
|
# tracked upstream at: https://github.com/pauldreik/rdfind/issues/186
|
|
autoconf
|
|
# drop the above, once upstream uses fixed autotools (we do)
|
|
%if 0%{?suse_version} < 1600
|
|
export CXX=g++-13
|
|
%endif
|
|
%configure
|
|
%{make_build}
|
|
|
|
%install
|
|
%{makeinstall}
|
|
|
|
%check
|
|
%{make_build} check
|
|
|
|
%files
|
|
%license LICENSE
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/rdfind.1%{?ext_man}
|
|
|
|
%changelog
|