]> git.pld-linux.org Git - packages/emcast.git/blob - emcast.spec
- initial release
[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/%{name}/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 applications that
17 require multicast communication. It includes the program emcast, a generic
18 multicast utility (like netcat), and the library libemcast, a generic multicast
19 library. Emcast supports IPv4 multicast (IM) and can easily support almost any
20 end-host multicast (EM) protocol. The EM protocols supported are Banana Tree
21 Protocol (BTP), Internet Chat Relay (IRC), and STAR (centralized TCP).
22
23 Emcast is pronounced em-cast.
24
25 %description -l pl
26 Emcast jest zestawem narzêdzi do obs³ugi multicastów dla aplikacji
27 rozproszonych/p2p, które wymagaj± komunikacji multicastowej. Zawiera program
28 emcast, wszechstronne narzêdzie do obs³ugi multicastów (jak netcat), oraz
29 bibliotekê libemcast.
30
31 %package libs
32 Summary:        emcast library
33 Summary(pl):    Biblioteka emcast
34 Group:          Libraries
35
36 %description libs
37 Generic multicast library.
38
39 %description libs -l pl
40 Biblioteka do obs³ugi multicastów.
41
42 %package devel
43 Summary:        emcast header files
44 Summary(pl):    Pliki nag³ówkowe emcast
45 Requires:       %{name}-libs = %{version}
46 Group:          Development/Libraries
47
48 %description devel
49 emcast header files
50
51 %description devel -l pl
52 Pliki nag³ówkowe emcast
53
54 %package static
55 Summary:        emcast static library
56 Summary(pl):    Statyczna biblioteka emcast
57 Requires:       %{name}-devel = %{version}
58 Group:          Development/Libraries
59
60 %description static
61 emcast static library
62
63 %description static -l pl
64 Statyczna biblioteka emcast
65
66 %prep
67 %setup -q
68
69 %build
70 %configure2_13
71 %{__make}
72
73 %install
74 rm -rf $RPM_BUILD_ROOT
75
76 %{__make} install \
77         DESTDIR=$RPM_BUILD_ROOT
78
79 %clean
80 rm -rf $RPM_BUILD_ROOT
81
82 %post   libs -p /sbin/ldconfig
83 %postun libs -p /sbin/ldconfig
84
85 %files
86 %defattr(644,root,root,755)
87 %doc AUTHORS ChangeLog NEWS README
88 %attr(755,root,root) %{_bindir}/*
89 %exclude %{_bindir}/%{name}-config
90
91 %files libs
92 %defattr(644,root,root,755)
93 %attr(755,root,root) %{_libdir}/*.so.*.*
94
95 %files devel
96 %defattr(644,root,root,755)
97 %doc HACKING doc/*.txt
98 %attr(755,root,root) %{_bindir}/%{name}-config
99 %{_includedir}/%{name}
100 %{_includedir}/btp
101 %{_libdir}/%{name}
102 %attr(755,root,root) %{_libdir}/*.la
103 %{_libdir}/*.so
104 %{_mandir}/man1/%{name}-config.1*
105 %{_datadir}/aclocal/*
106
107 %files static
108 %defattr(644,root,root,755)
109 %{_libdir}/*.a
This page took 0.059922 seconds and 3 git commands to generate.