]> git.pld-linux.org Git - packages/firehose.git/blob - firehose.spec
- 0.5.0
[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.5.0
5 Release:        1
6 License:        LGPL
7 Group:          Networking/Utilities
8 Source0:        http://dl.sourceforge.net/heroines/%{name}-%{version}-src.tar.bz2
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         TARGET=pld
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49 install -d $RPM_BUILD_ROOT{%{_includedir},%{_libdir},%{_bindir}}
50
51 install pld/{firerecv,firesend,firepipe,dateserve,dateget,bottom,extract} $RPM_BUILD_ROOT%{_bindir}
52 install pld/libfirehose.a $RPM_BUILD_ROOT%{_libdir}
53 install firehose*.h $RPM_BUILD_ROOT%{_includedir}
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc README
61 %attr(755,root,root) %{_bindir}/*
62
63 %files devel
64 %defattr(644,root,root,755)
65 %{_libdir}/lib*.a
66 %{_includedir}/*.h
This page took 0.057559 seconds and 4 git commands to generate.