forked from pool/fdupes
da1a4eb97b
- Simplify macros.fdupes with a call to a C++ program that does the same within a fraction of a second what the shell loop did in many seconds (bsc#1195709) OBS-URL: https://build.opensuse.org/request/show/961567 OBS-URL: https://build.opensuse.org/package/show/utilities/fdupes?expand=0&rev=23
64 lines
1.8 KiB
RPMSpec
64 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package fdupes
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%{?!_rpmmacrodir:%define _rpmmacrodir /usr/lib/rpm/macros.d}
|
|
|
|
Name: fdupes
|
|
Version: 2.1.2
|
|
Release: 0
|
|
Summary: Tool to identify or delete duplicate files
|
|
License: MIT
|
|
Group: Productivity/Archiving/Compression
|
|
URL: https://github.com/adrianlopezroche/fdupes
|
|
Source0: https://github.com/adrianlopezroche/fdupes/releases/download/v%{version}/fdupes-%{version}.tar.gz
|
|
Source1: macros.fdupes
|
|
Source2: fdupes_wrapper.cpp
|
|
BuildRequires: gcc-c++
|
|
|
|
%description
|
|
FDUPES is a program for identifying or deleting duplicate files
|
|
residing within specified directories.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%configure --without-ncurses
|
|
%make_build
|
|
g++ $RPM_OPT_FLAGS %{S:2} -o fdupes_wrapper
|
|
|
|
%install
|
|
%make_install
|
|
install -D -m644 %{SOURCE1} %{buildroot}%{_rpmmacrodir}/macros.%{name}
|
|
install -D -m755 fdupes_wrapper %{buildroot}/usr/lib/rpm/fdupes_wrapper
|
|
|
|
%check
|
|
./%{name} testdir
|
|
./%{name} --omitfirst testdir
|
|
./%{name} --recurse testdir
|
|
./%{name} --size testdir
|
|
|
|
%files
|
|
%doc CHANGES
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/%{name}.1*
|
|
%{_rpmmacrodir}/macros.%{name}
|
|
/usr/lib/rpm/fdupes_wrapper
|
|
|
|
%changelog
|