]> git.pld-linux.org Git - packages/firehose.git/blob - firehose.spec
- new %%doc
[packages/firehose.git] / firehose.spec
1 Summary:        Easy data transfer over parallel network devices
2 Summary(pl):    Narzêdzie do ³atwego przesy³ania danych po równoleg³ych urz±dzeniach sieciowych
3 Name:           firehose
4 Version:        0.4.0
5 Release:        1
6 License:        LGPL
7 Group:          Networking/Utilities
8 Source0:        http://heroines.sourceforge.net/%{name}-%{version}.tar.gz
9 URL:            http://heroines.sourceforge.net/firehose.php3
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 At the heart of firehose is a library which allows any program wishing
14 to stream data over striped ethernet to do so. There are several
15 utilities which demonstrate use of the library. firerecv is a threaded
16 server and firesend is a client. firepipe allows you to send data over
17 parallel network devices using pipes.
18
19 %description -l pl
20 Podstaw± firehose jest biblioteka pozwalaj±ca programom przesy³aæ
21 strumienie danych po wielu równoleg³ych po³±czeniach sieciowych naraz.
22 Pakiet zawiera kilka narzêdzi demonstruj±cych u¿ycie tej biblioteki:
23 firerecv to wielow±tkowy serwer, firesend to klient, a firepipe
24 pozwala na wysy³anie danych przy u¿yciu rurek.
25
26 %package devel
27 Summary:        Firehose header files and static library
28 Summary(pl):    Pliki nag³ówkowe i statyczna biblioteka firehose
29 Group:          Development/Libraries
30 # doesn not depend on base (no shared library)
31
32 %description devel
33 Firehose header files and static library.
34
35 %description devel -l pl
36 Pliki nag³ówkowe i statyczna biblioteka firehose.
37
38 %prep
39 %setup -q -n %{name}
40
41 %build
42 %{__make} \
43         GCC="%{__cc}" \
44         CFLAGS="%{rpmcflags}"
45
46 %install
47 rm -rf $RPM_BUILD_ROOT
48 install -d $RPM_BUILD_ROOT{%{_includedir},%{_libdir},%{_bindir}}
49
50 install firerecv firesend firepipe $RPM_BUILD_ROOT%{_bindir}
51 install libfirehose.a $RPM_BUILD_ROOT%{_libdir}
52 install firehose*.h $RPM_BUILD_ROOT%{_includedir}
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc README
59 %attr(755,root,root) %{_bindir}/*
60
61 %files devel
62 %defattr(644,root,root,755)
63 %{_libdir}/lib*.a
64 %{_includedir}/*.h
This page took 0.041658 seconds and 3 git commands to generate.