- Update to 1.60 * add configure option --with-man2html * update configure macros * update config.guess, config.sub OBS-URL: https://build.opensuse.org/request/show/320728 OBS-URL: https://build.opensuse.org/package/show/devel:tools/diffstat?expand=0&rev=28
58 lines
1.7 KiB
RPMSpec
58 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package diffstat
|
|
#
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: diffstat
|
|
Version: 1.60
|
|
Release: 0
|
|
Summary: Utility That Provides Statistics Based on the Output of diff
|
|
License: MIT
|
|
Group: Productivity/Text/Utilities
|
|
Url: http://dickey.his.com/diffstat/diffstat.html
|
|
Source0: ftp://invisible-island.net/diffstat/diffstat-%{version}.tgz
|
|
Source1: ftp://invisible-island.net/diffstat/diffstat-%{version}.tgz.asc
|
|
Source2: %{name}.keyring
|
|
Patch0: %{name}.diff
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
diffstat reads the output of the diff command and displays a histogram
|
|
of the insertions, deletions, and modifications in each file.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0
|
|
|
|
%build
|
|
export CFLAGS="%{optflags} -Wall"
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
|
|
|
%check
|
|
make %{?_smp_mflags} check
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README CHANGES COPYING
|
|
%{_bindir}/diffstat
|
|
%doc %{_mandir}/man1/diffstat.1*
|
|
|
|
%changelog
|