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