]> git.pld-linux.org Git - packages/libeXosip2.git/blob - libeXosip2.spec
- updated to 5.1.3
[packages/libeXosip2.git] / libeXosip2.spec
1 Summary:        The eXtended osip library
2 Summary(pl.UTF-8):      Rozszerzona biblioteka osip
3 Name:           libeXosip2
4 Version:        5.1.3
5 Release:        1
6 License:        GPL v2+
7 Group:          Libraries
8 Source0:        http://download.savannah.gnu.org/releases/exosip/libexosip2-%{version}.tar.gz
9 # Source0-md5:  9a088539e5b83c66fec628ca9d80b323
10 Patch0:         %{name}-link.patch
11 URL:            http://savannah.nongnu.org/projects/exosip
12 BuildRequires:  autoconf >= 2.69
13 BuildRequires:  automake
14 BuildRequires:  c-ares-devel
15 BuildRequires:  libosip2-devel >= 5.0.0
16 BuildRequires:  libtool >= 2:2
17 BuildRequires:  openssl-devel >= 1.0.2
18 BuildRequires:  pkgconfig
19 Requires:       libosip2 >= 5.0.0
20 Requires:       openssl >= 1.0.2
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 eXosip is a library that hides the complexity of using the SIP
25 protocol for multimedia session establishement. This protocol is
26 mainly to be used by VoIP telephony applications (endpoints or
27 conference server) but might be also usefull for any application that
28 wish to establish sessions like multiplayer games.
29
30 %description -l pl.UTF-8
31 eXosip jest biblioteką ukrywającą skomplikowane korzystanie z
32 protokołu SIP dla sesji multimedialnych. Protokół jest przeznaczony do
33 wykorzystania przez aplikacje telefoniczne korzystające z VoIP
34 (telefony lub serwery konferencji), ale może być również używany
35 przez dowolne aplikacje chcące używać sesji multimedialnych, jak np.
36 gry dla wielu graczy.
37
38 %package devel
39 Summary:        Header files for libeXosip2 library
40 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libeXosip2
41 Group:          Development/Libraries
42 Requires:       %{name} = %{version}-%{release}
43 Requires:       c-ares-devel
44 Requires:       libosip2-devel >= 5.0.0
45 Requires:       openssl-devel >= 1.0.2
46
47 %description devel
48 Header files for libeXosip2 library.
49
50 %description devel -l pl.UTF-8
51 Pliki nagłówkowe biblioteki libeXosip2.
52
53 %package static
54 Summary:        Static libeXosip2 library
55 Summary(pl.UTF-8):      Statyczna biblioteka libeXosip2
56 Group:          Development/Libraries
57 Requires:       %{name}-devel = %{version}-%{release}
58
59 %description static
60 Static libeXosip2 library.
61
62 %description static -l pl.UTF-8
63 Statyczna biblioteka libeXosip2.
64
65 %prep
66 %setup -q -n libexosip2-%{version}
67 %patch0 -p1
68
69 %build
70 %{__libtoolize}
71 %{__aclocal} -I scripts
72 %{__autoconf}
73 %{__autoheader}
74 %{__automake}
75 %configure \
76         --enable-openssl \
77         --disable-silent-rules
78 %{__make} -j1
79
80 %install
81 rm -rf $RPM_BUILD_ROOT
82
83 %{__make} install \
84         DESTDIR=$RPM_BUILD_ROOT
85
86 %clean
87 rm -rf $RPM_BUILD_ROOT
88
89 %post   -p /sbin/ldconfig
90 %postun -p /sbin/ldconfig
91
92 %files
93 %defattr(644,root,root,755)
94 %doc AUTHORS ChangeLog NEWS README
95 %attr(755,root,root) %{_bindir}/sip_monitor
96 %attr(755,root,root) %{_bindir}/sip_reg
97 %attr(755,root,root) %{_libdir}/libeXosip2.so.*.*.*
98 %attr(755,root,root) %ghost %{_libdir}/libeXosip2.so.13
99
100 %files devel
101 %defattr(644,root,root,755)
102 %attr(755,root,root) %{_libdir}/libeXosip2.so
103 %{_libdir}/libeXosip2.la
104 %{_includedir}/eXosip2
105
106 %files static
107 %defattr(644,root,root,755)
108 %{_libdir}/libeXosip2.a
This page took 0.112947 seconds and 3 git commands to generate.