]> git.pld-linux.org Git - packages/cpipe.git/blob - cpipe.spec
dd1887df7327e129ec80ac3317a22f8d2dd5e13e
[packages/cpipe.git] / cpipe.spec
1 Summary:        Counting pipe
2 Summary(pl):    Potok ze zliczaniem
3 Name:           cpipe
4 Version:        3.0.1
5 Release:        2
6 License:        GPL
7 Group:          Applications/Archiving
8 Source0:        http://download.berlios.de/cpipe/%{name}-%{version}.tar.gz
9 # Source0-md5:  1eaa5b28ef7ef96f1c54d5607ec828b3
10 Patch0:         %{name}-make_fix.patch
11 URL:            http://developer.berlios.de/projects/cpipe/
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 Did you ever want to know how fast your tar is or how much data it has
16 transferred already. How about using socket or nc to copy files either
17 with or without compression over a fast network connection, which one
18 is faster?
19
20 If you want to know the answer, use cpipe as a totally unscientific
21 approach to measure throughput. Cpipe copies its standard input to its
22 standard output while measuring the time it takes to read an input
23 buffer and write an output buffer. Statistics of average throughput
24 and the total amount of bytes copied are printed to the standard error
25 output.
26
27 %description -l pl
28 Czy kiedykolwiek zastanawia³e¶ siê jak szybki jest Twój tar, lub ile
29 danych ju¿ zapisa³? A co my¶lisz o kopiowaniu plików przy u¿yciu
30 socketa lub nc, z kompresj± lub bez, po szybkiej sieci - jak bêdzie
31 szybciej?
32
33 Je¶li chcesz znaæ odpowied¼, u¿yj cpipe jako ca³kowicie nienaukowego
34 podej¶cia do pomiaru przepustowo¶ci. Cpipe kopiuje standardowe wej¶cie
35 na wyj¶cie jednocze¶nie mierz±c czas jaki zajmuje czytanie i
36 zapisywanie danych. Statystyki ¶redniej przepustowo¶ci i ca³kowitej
37 ilo¶ci skopiowanych bajtów s± wypisywane na standardowe wyj¶cie
38 b³êdów.
39
40 %prep
41 %setup -q
42 %patch0
43
44 %build
45 # workaround not to use clig
46 touch cmdline.c cmdline.h cpipe.1
47
48 %{__make} \
49         CC="%{__cc}" \
50         CFLAGS="%{rpmcflags} -Wall"
51
52 %install
53 rm -rf $RPM_BUILD_ROOT
54 install -d $RPM_BUILD_ROOT{%{_mandir}/man1,%{_bindir}}
55
56 install cpipe $RPM_BUILD_ROOT%{_bindir}
57 install cpipe.1 $RPM_BUILD_ROOT%{_mandir}/man1
58
59 %clean
60 rm -rf $RPM_BUILD_ROOT
61
62 %files
63 %defattr(644,root,root,755)
64 %attr(755,root,root) %{_bindir}/*
65 %{_mandir}/man1/*
This page took 0.068453 seconds and 2 git commands to generate.