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