]> git.pld-linux.org Git - packages/diffstat.git/blob - diffstat.spec
- updated to 1.38
[packages/diffstat.git] / diffstat.spec
1 Summary:        Provides diff file statistics
2 Summary(de):    Liefert diff-Datei-Statistiken
3 Summary(fr):    Fournit des statistiques sur les différences de fichiers
4 Summary(pl):    Umo¿liwia robienie statystyk plików diff
5 Summary(tr):    diff dosyasý istatistik bilgileri çýkarýr
6 Name:           diffstat
7 Version:        1.38
8 Release:        1
9 License:        distributable
10 Group:          Applications/Text
11 Source0:        ftp://invisible-island.net/diffstat/%{name}.tar.gz
12 # Source0-md5:  79e948aae49d2a0bd767b791e5cc132f
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
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
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
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
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.063432 seconds and 3 git commands to generate.