]> git.pld-linux.org Git - packages/libosip2.git/blob - libosip2.spec
4c6c683474da74c7b950e3f29e82f7584367e0e6
[packages/libosip2.git] / libosip2.spec
1 Summary:        The GNU oSIP library
2 Summary(pl.UTF-8):      Biblioteka GNU oSIP
3 Name:           libosip2
4 Version:        3.1.0
5 Release:        1
6 License:        LGPL v2.1+
7 Group:          Libraries
8 Source0:        http://ftp.gnu.org/gnu/osip/%{name}-%{version}.tar.gz
9 # Source0-md5:  7eb305608256ac2a7a27b66ce52627c8
10 Patch0:         %{name}-nolibs.patch
11 URL:            http://www.gnu.org/software/osip/
12 BuildRequires:  autoconf >= 2.50
13 BuildRequires:  automake
14 BuildRequires:  libtool >= 1:1.4.3
15 Provides:       libosip
16 Obsoletes:      libosip
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 This is "the GNU oSIP library" (for Omnibus SIP). It has been designed
21 to provide the Internet Community a simple way to support the Session
22 Initiation Protocol. SIP is described in the RFC2543 which is
23 available at http://www.ietf.org/rfc/rfc2543.txt.
24
25 %description -l pl.UTF-8
26 To jest biblioteka GNU oSIP (Omnibus SIP). Została zaprojektowana, aby
27 dostarczyć Społeczności Internetowej prostą obsługę protokołu SIP.
28 Protokół SIP (Session Initiation Protocol) jest opisany w RFC2543.
29
30 %package devel
31 Summary:        The GNU oSIP library - development files
32 Summary(pl.UTF-8):      Pliki dla programistów używających GNU oSIP
33 Group:          Development/Libraries
34 Requires:       %{name} = %{version}-%{release}
35 Provides:       libosip-devel
36 Obsoletes:      libosip-devel
37
38 %description devel
39 Development files for the GNU oSIP library.
40
41 %description devel -l pl.UTF-8
42 Pliki dla programistów używających biblioteki GNU oSIP.
43
44 %package static
45 Summary:        The GNU oSIP library - static version
46 Summary(pl.UTF-8):      Statyczna biblioteka GNU oSIP
47 Group:          Development/Libraries
48 Requires:       %{name}-devel = %{version}-%{release}
49 Provides:       libosip-static
50 Obsoletes:      libosip-static
51
52 %description static
53 Static version of the GNU oSIP library.
54
55 %description static -l pl.UTF-8
56 Statyczna wersja biblioteki GNU oSIP.
57
58 %prep
59 %setup -q
60 %patch0 -p1
61
62 rm -f acinclude.m4
63
64 %build
65 %{__libtoolize}
66 %{__aclocal} -I scripts
67 %{__autoconf}
68 %{__automake}
69 %configure \
70         --enable-semaphore \
71         --enable-pthread \
72         --%{?debug:en}%{!?debug:dis}able-debug
73
74 %{__make}
75
76 %install
77 rm -rf $RPM_BUILD_ROOT
78
79 %{__make} install \
80         DESTDIR=$RPM_BUILD_ROOT
81
82 mv -f $RPM_BUILD_ROOT%{_mandir}/man{1,3}
83 mv -f $RPM_BUILD_ROOT%{_mandir}/man3/osip.{1,3}
84
85 %clean
86 rm -rf $RPM_BUILD_ROOT
87
88 %post   -p /sbin/ldconfig
89 %postun -p /sbin/ldconfig
90
91 %files
92 %defattr(644,root,root,755)
93 %doc AUTHORS BUGS ChangeLog NEWS README TODO
94 %attr(755,root,root) %{_libdir}/libosip2.so.*.*.*
95 %attr(755,root,root) %ghost %{_libdir}/libosip2.so.3
96 %attr(755,root,root) %{_libdir}/libosipparser2.so.*.*.*
97 %attr(755,root,root) %ghost %{_libdir}/libosipparser2.so.3
98
99 %files devel
100 %defattr(644,root,root,755)
101 %attr(755,root,root) %{_libdir}/libosip2.so
102 %attr(755,root,root) %{_libdir}/libosipparser2.so
103 %{_libdir}/libosip2.la
104 %{_libdir}/libosipparser2.la
105 %{_includedir}/osip2
106 %{_includedir}/osipparser2
107 %{_pkgconfigdir}/libosip2.pc
108 %{_mandir}/man3/osip.3*
109
110 %files static
111 %defattr(644,root,root,755)
112 %{_libdir}/libosip2.a
113 %{_libdir}/libosipparser2.a
This page took 0.031422 seconds and 2 git commands to generate.