]> git.pld-linux.org Git - SPECS.git/blob - rpmstats.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / rpmstats.spec
1 Summary:        Gather statistics from installed packages
2 Summary(pl.UTF-8):      Zbieranie statystyk z zainstalowanych pakietów
3 Name:           rpmstats
4 Version:        0.7
5 Release:        0.1
6 License:        GPL
7 Group:          Applications/System
8 Source0:        %{name}-%{version}.tar.xz
9 # Source0-md5:  825473cbff6a7b503c566f440fac7990
10 URL:            https://svn.mandriva.com/viewvc/soft/rpm/rpmstats/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  rpm-devel >= 4.4.1
14 BuildRequires:  tar >= 1:1.22
15 BuildRequires:  xz
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 This is a program generating statistics about installed packages, and
20 to work the user needs to install it.
21
22 This tool lists, for all the packages installed, the number of days
23 since one file of the packages have not been accessed. To gather these
24 data, another tool exists: drakstats, which sends to bugzilla the
25 output of rpmstats.
26
27 %description -l pl.UTF-8
28 rpmstats zbiera statystyki ostatniego użycia z zainstalowanych
29 pakietów.
30
31 %prep
32 %setup -q
33
34 %build
35 %{__aclocal}
36 %{__autoconf}
37 %configure
38 %{__make}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42
43 %{__make} install \
44         bindir=$RPM_BUILD_ROOT%{_bindir} \
45         libexecdir=$RPM_BUILD_ROOT%{_libdir} \
46         mandir=$RPM_BUILD_ROOT%{_mandir}
47
48 %clean
49 rm -rf $RPM_BUILD_ROOT
50
51 %files
52 %defattr(644,root,root,755)
53 %doc ChangeLog
54 %attr(755,root,root) %{_bindir}/*
55 %dir %{_libdir}/%{name}
56 %attr(755,root,root) %{_libdir}/%{name}/%{name}
57 %{_mandir}/man?/*
This page took 0.113106 seconds and 3 git commands to generate.