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