]> git.pld-linux.org Git - packages/pv.git/blob - pv.spec
- converted to UTF-8
[packages/pv.git] / pv.spec
1 Summary:        Pipe Viewer - tool for monitoring the progress of data through a pipeline
2 Summary(pl.UTF-8):   Pipe Viewer - monitorowanie przepływu danych przez potok
3 Name:           pv
4 Version:        0.9.2
5 Release:        1
6 License:        GPL
7 Group:          Applications
8 Source0:        http://dl.sourceforge.net/pipeviewer/%{name}-%{version}.tar.gz
9 # Source0-md5:  a8e31f4e38088b905f5d4f13c670315c
10 URL:            http://www.ivarch.com/programs/pv.shtml
11 BuildRequires:  autoconf
12 BuildRequires:  gettext-devel
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Pipe Viewer is a terminal-based tool for monitoring the progress of
17 data through a pipeline. It can be inserted into any normal pipeline
18 between two processes to give a visual indication of how quickly data
19 is passing through, how long it has taken, how near to completion it
20 is, and an estimate of how long it will be until completion.
21
22 %description -l pl.UTF-8
23 Pipe Viewer jest tekstowym narzędziem do monitorowania przepływu
24 danych przez potok. Może być wstawiony w dowolny potok pomiędzy dwa
25 procesy w celu wizualizacji prędkości z jaką dane przepływają pomiędzy
26 nimi, ile czasu im to zajmuje, ile jeszcze zostało do ukończenia i ile
27 mniej więcej czasu to będzie trwało.
28
29 %prep
30 %setup -q
31
32 %build
33 cd autoconf
34 %{__autoconf}
35 cd ..
36 install autoconf/configure .
37 %configure
38 %{__make}
39
40 %install
41 rm -rf $RPM_BUILD_ROOT
42 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1,%{_infodir}}
43
44 %{__make} install \
45         DESTDIR=$RPM_BUILD_ROOT
46
47 %find_lang %{name}
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %post
53 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
54
55 %postun
56 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
57
58 %files -f %{name}.lang
59 %defattr(644,root,root,755)
60 %doc README doc/manual.html doc/NEWS doc/TODO
61 %attr(755,root,root) %{_bindir}/*
62 %{_infodir}/*.info*
63 %{_mandir}/man1/*
This page took 0.059623 seconds and 4 git commands to generate.