]> git.pld-linux.org Git - packages/emcast.git/blob - emcast.spec
- longer pl desc, some unifications
[packages/emcast.git] / emcast.spec
1 Summary:        Generic multicast utility
2 Summary(pl):    Wszechstronne narzêdzia do multicastów
3 Name:           emcast
4 Version:        0.3.2
5 Release:        1
6 License:        GPL
7 Group:          Networking/Utilities
8 Source0:        http://www.junglemonkey.net/emcast/src/%{name}-%{version}.tar.gz
9 # Source0-md5:  1031642c4f0e13a1c51d38ae7dcf7c93
10 BuildRequires:  glib-devel >= 1.2.0
11 BuildRequires:  gnet-devel >= 1.1.0
12 URL:            http://www.junglemonkey.net/emcast/
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 Emcast is a multicast toolkit for distributed/peer-to-peer
17 applications that require multicast communication. It includes the
18 program emcast, a generic multicast utility (like netcat), and the
19 library libemcast, a generic multicast library. Emcast supports IPv4
20 multicast (IM) and can easily support almost any end-host multicast
21 (EM) protocol. The EM protocols supported are Banana Tree Protocol
22 (BTP), Internet Relay Chat (IRC), and STAR (centralized TCP).
23
24 Emcast is pronounced em-cast.
25
26 %description -l pl
27 Emcast jest zestawem narzêdzi do obs³ugi multicastów dla aplikacji
28 rozproszonych/p2p, które wymagaj± komunikacji multicastowej. Zawiera
29 program emcast - wszechstronne narzêdzie do obs³ugi multicastów (jak
30 netcat), oraz bibliotekê libemcast - ogóln± bibliotekê do multicastów.
31 Emcast obs³uguje multicasty IPv4 (IM) i mo¿e ³atwo obs³u¿yæ prawie
32 dowolny protokó³ koñcowego hosta (EM). Obs³ugiwane protoko³y EM to
33 Banana Tree Protocol (BTP), Internet Relay Chat (IRC) i STAR
34 (scentralizowany TCP).
35
36 %package libs
37 Summary:        emcast library
38 Summary(pl):    Biblioteka emcast
39 Group:          Libraries
40
41 %description libs
42 Generic multicast library.
43
44 %description libs -l pl
45 Biblioteka do obs³ugi multicastów.
46
47 %package devel
48 Summary:        emcast header files
49 Summary(pl):    Pliki nag³ówkowe emcast
50 Group:          Development/Libraries
51 Requires:       %{name}-libs = %{version}-%{release}
52
53 %description devel
54 emcast header files
55
56 %description devel -l pl
57 Pliki nag³ówkowe emcast
58
59 %package static
60 Summary:        emcast static library
61 Summary(pl):    Statyczna biblioteka emcast
62 Group:          Development/Libraries
63 Requires:       %{name}-devel = %{version}-%{release}
64
65 %description static
66 emcast static library.
67
68 %description static -l pl
69 Statyczna biblioteka emcast.
70
71 %prep
72 %setup -q
73
74 %build
75 %configure2_13
76 %{__make}
77
78 %install
79 rm -rf $RPM_BUILD_ROOT
80
81 %{__make} install \
82         DESTDIR=$RPM_BUILD_ROOT
83
84 %clean
85 rm -rf $RPM_BUILD_ROOT
86
87 %post   libs -p /sbin/ldconfig
88 %postun libs -p /sbin/ldconfig
89
90 %files
91 %defattr(644,root,root,755)
92 %doc AUTHORS ChangeLog NEWS README
93 %attr(755,root,root) %{_bindir}/*
94 %exclude %{_bindir}/%{name}-config
95
96 %files libs
97 %defattr(644,root,root,755)
98 %attr(755,root,root) %{_libdir}/*.so.*.*
99
100 %files devel
101 %defattr(644,root,root,755)
102 %doc HACKING doc/*.txt
103 %attr(755,root,root) %{_bindir}/%{name}-config
104 %attr(755,root,root) %{_libdir}/*.la
105 %{_libdir}/*.so
106 %{_includedir}/%{name}
107 %{_includedir}/btp
108 %{_libdir}/%{name}
109 %{_mandir}/man1/%{name}-config.1*
110 %{_aclocaldir}/*
111
112 %files static
113 %defattr(644,root,root,755)
114 %{_libdir}/*.a
This page took 0.108263 seconds and 3 git commands to generate.