]> git.pld-linux.org Git - packages/libsoup.git/blob - libsoup.spec
- rel. 4 to rebuild with gnutls-1.0.0
[packages/libsoup.git] / libsoup.spec
1 Summary:        SOAP (Simple Object Access Protocol) implementation in C
2 Summary(pl):    Implementacja w C SOAP (Simple Object Access Protocol)
3 Name:           libsoup
4 Version:        1.99.26
5 Release:        4
6 License:        LGPL
7 Group:          X11/Libraries
8 Source0:        ftp://ftp.gnome.org/pub/GNOME/sources/%{name}/1.99/%{name}-%{version}.tar.bz2
9 # Source0-md5:  acb6658fd0dcebd2c5fc8347e0183515
10 URL:            http://www.gnome.org/
11 Patch0:         %{name}-gnutls.patch
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  glib2-devel >= 2.2.0
15 BuildRequires:  gnutls-devel >= 1.0.0
16 BuildRequires:  gtk-doc
17 BuildRequires:  libtool
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 It provides an queued asynchronous callback-based mechanism for
22 sending and servicing SOAP requests, and a WSDL (Web Service
23 Definition Language) to C compiler which generates client stubs and
24 server skeletons for easily calling and implementing SOAP methods.
25
26 %description -l pl
27 Pakiet dostarcza interfejs kolejkowalnego, asynchronicznego mechanizmu
28 do wysy³ania i serwowania ¿±dañ SOAP oraz WSDL (Web Service Definition
29 Language) dla kompilatora C, który generuje klienckie stub i szkielety
30 serwerów dla ³atwego wywo³ywania i implementowania metod SOAP.
31
32 %package devel
33 Summary:        Include files etc to develop SOAP applications
34 Summary(pl):    Pliki nag³ówkowe, dokumentacja dla SOAP
35 Group:          X11/Development/Libraries
36 Requires:       %{name} = %{version}
37 Requires:       glib2-devel >= 2.2.0
38 Requires:       gnutls-devel >= 1.0.0
39
40 %description devel
41 Header files, etc you can use to develop SOAP applications.
42
43 %description devel -l pl
44 Pliki nag³ówkowe itp. Jednym s³owem wszystko czego potrzebujesz aby
45 samemu tworzyæ sobie aplikacje korzystaj±ce z SOAP.
46
47 %package static
48 Summary:        SOAP static libraries
49 Summary(pl):    Biblioteki statyczne SOAP
50 Group:          X11/Development/Libraries
51 Requires:       %{name}-devel = %{version}
52
53 %description static
54 SOAP static libraries.
55
56 %description static -l pl
57 Biblioteki statyczne SOAP.
58
59 %prep
60 %setup  -q
61 %patch0 -p1
62
63 %build
64 rm -f missing
65 %{__libtoolize}
66 %{__aclocal}
67 %{__autoheader}
68 %{__autoconf}
69 %{__automake}
70
71 %configure \
72         --enable-ssl \
73         --enable-gtk-doc \
74         --with-html-dir=%{_gtkdocdir}
75
76 %{__make}
77
78 %install
79 rm -rf $RPM_BUILD_ROOT
80
81 %{__make} install \
82         pkgconfigdir=%{_pkgconfigdir} \
83         m4datadir=%{_aclocaldir} \
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 README TODO
95 %attr(755,root,root) %{_libdir}/lib*.so.*.*
96
97 %files devel
98 %defattr(644,root,root,755)
99 %attr(755,root,root) %{_libdir}/lib*.so
100 %{_libdir}/lib*.la
101 %{_includedir}/*
102 %{_pkgconfigdir}/*
103
104 %files static
105 %defattr(644,root,root,755)
106 %{_libdir}/lib*.a
This page took 0.104306 seconds and 3 git commands to generate.