]> git.pld-linux.org Git - packages/diffstat.git/blob - diffstat.spec
ac35014c983ec8f5a5634d127ea30cc90589be16
[packages/diffstat.git] / diffstat.spec
1 Summary:        Provides diff file statistics
2 Summary(de.UTF-8):      Liefert diff-Datei-Statistiken
3 Summary(fr.UTF-8):      Fournit des statistiques sur les différences de fichiers
4 Summary(pl.UTF-8):      Umożliwia robienie statystyk plików diff
5 Summary(tr.UTF-8):      diff dosyası istatistik bilgileri çıkarır
6 Name:           diffstat
7 Version:        1.41
8 Release:        2
9 License:        distributable
10 Group:          Applications/Text
11 Source0:        ftp://invisible-island.net/diffstat/%{name}.tar.gz
12 # Source0-md5:  c4a55fea8f94dbd1664f76c98da4ee17
13 URL:            http://invisible-island.net/diffstat/
14 BuildRequires:  autoconf
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 'diffstat' provides a number of statistics on a patch generated by
19 diff, including number of additions, number of removals, and total
20 number of changes. It can be useful, for example, to find out what
21 changes have been made to a program, just by feeding the update patch
22 to diffstat.
23
24 %description -l de.UTF-8
25 'diffstat' stellt eine Reihe von statistischen Informationen für mit
26 Patch erzeugte Diffs bereit, u.a. die Zahl der Einfügungen, der
27 Streichungen sowie die Gesamtzahl der Änderungen. So ist es möglich,
28 die Änderungen an einem Programm zu ermitteln, indem man das
29 Update-Patch durch diffstat durchlaufen läßt.
30
31 %description -l fr.UTF-8
32 « diffstat » offre de nombreuses statistiques sur un patch généré par
33 diff, cela comprend le nombre d'ajouts, de suppressions et le nombre
34 total de modifications. Il peut être utile, par exemple, de retrouver
35 les modifications faites à un programme en fournissant uniquement le
36 patch de mise à jour à diffstat.
37
38 %description -l pl.UTF-8
39 Diffstat umożliwia prowadzenie statystyk pliku (łatki) generowanego
40 przez diff. Pakiet ten może być użyteczny, na przykład w poszukiwaniu
41 zmian, które zostały dokonane w jakimś programie.
42
43 %description -l tr.UTF-8
44 diffstat programı, diff tarafından üretilen bir yama üzerinden toplama
45 sayısı, çıkarma sayısı, toplam değişiklik sayısı gibi bazı
46 istatistiksel bilgiler çıkartır.
47
48 %prep
49 %setup -q
50
51 %build
52 chmod -R u+w *
53 %{__autoconf}
54 %configure
55 %{__make} \
56         CPPFLAGS="%{rpmcflags} -w" \
57         LDFLAGS="%{rpmldflags}"
58
59 %install
60 rm -rf $RPM_BUILD_ROOT
61 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
62
63 install diffstat $RPM_BUILD_ROOT%{_bindir}
64 install diffstat.1 $RPM_BUILD_ROOT%{_mandir}/man1
65
66 %clean
67 rm -rf $RPM_BUILD_ROOT
68
69 %files
70 %defattr(644,root,root,755)
71 %doc README CHANGES
72 %attr(755,root,root) %{_bindir}/*
73 %{_mandir}/man1/*
This page took 0.143474 seconds and 3 git commands to generate.