]> git.pld-linux.org Git - packages/ortp.git/blob - ortp.spec
- updated to 0.8.1
[packages/ortp.git] / ortp.spec
1 # TODO:
2 #       - fix gtk-doc
3 Summary:        RTP/RTCP protocol library
4 Summary(pl):    Biblioteka obs³uguj±ca protokó³ RTP/RTCP
5 Name:           ortp
6 Version:        0.8.1
7 Release:        1
8 License:        LGPL
9 Group:          Libraries
10 Source0:        http://www.linphone.org/ortp/sources/%{name}-%{version}.tar.gz
11 # Source0-md5:  5d8a8da638aec3a80214d64e0c7929af
12 URL:            http://www.linphone.org/ortp/
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  glib2-devel >= 2.0.0
16 BuildRequires:  gtk-doc
17 BuildRequires:  libtool
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 ortp is a library for handling RTP/RTCP packets. (See RFC 1889 and
22 1890 for more information about the protocol)
23
24 %description -l pl
25 ortp to biblioteka obs³uguj±ca pakiety RTP/RTCP. Wiêcej informacji o
26 protokole znajduje siê w RFC 1889 i 1890.
27
28 %package devel
29 Summary:        Header files to develop applications using ortp
30 Summary(pl):    Pliki nag³ówkowe do tworzenia aplikacji u¿ywaj±cych ortp
31 Group:          Development/Libraries
32 Requires:       %{name} = %{version}-%{release}
33
34 %description devel
35 Header files for the ortp library.
36
37 %description devel -l pl
38 Pliki nag³ówkowe dla biblioteki ortp.
39
40 %package static
41 Summary:        Static ortp library
42 Summary(pl):    Statyczna biblioteka ortp
43 Group:          Development/Libraries
44 Requires:       %{name}-devel = %{version}-%{release}
45
46 %description static
47 Static ortp library.
48
49 %description static -l pl
50 Statyczna biblioteka ortp.
51
52 %prep
53 %setup -q
54
55 %build
56 %{__libtoolize}
57 %{__aclocal}
58 %{__autoconf}
59 %{__automake}
60 %configure \
61         --disable-gtk-doc \
62         --with-html-dir=%{_gtkdocdir}
63 %{__make}
64
65 %install
66 rm -rf $RPM_BUILD_ROOT
67
68 %{__make} install \
69         DESTDIR=$RPM_BUILD_ROOT
70
71 %clean
72 rm -fr $RPM_BUILD_ROOT
73
74 %post   -p /sbin/ldconfig
75 %postun -p /sbin/ldconfig
76
77 %files
78 %defattr(644,root,root,755)
79 %doc README NEWS AUTHORS ChangeLog
80 %attr(755,root,root) %{_libdir}/lib*.so.*.*
81
82 %files devel
83 %defattr(644,root,root,755)
84 %attr(755,root,root) %{_libdir}/lib*.so
85 %{_libdir}/*.la
86 %{_includedir}/ortp
87 %{_gtkdocdir}/ortp
88 %{_pkgconfigdir}/*
89
90 %files static
91 %defattr(644,root,root,755)
92 %{_libdir}/lib*.a
This page took 0.044012 seconds and 4 git commands to generate.