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