]> git.pld-linux.org Git - packages/libsoup.git/blob - libsoup.spec
- -devel R: glib2-devel
[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.23
5 Release:        1
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:  7d7139a99cf99d3f1a78decadcea184f
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 Requires:       glib2-devel
37
38 %description devel
39 Header files, etc you can use to develop SOAP applications.
40
41 %description devel -l pl
42 Pliki nag³ówkowe itp. Jednym s³owem wszystko czego potrzebujesz aby
43 samemu tworzyæ sobie aplikacje korzystaj±ce z SOAP.
44
45 %package static
46 Summary:        SOAP static libraries
47 Summary(pl):    Biblioteki statyczne SOAP
48 Group:          X11/Development/Libraries
49 Requires:       %{name}-devel = %{version}
50
51 %description static
52 SOAP static libraries.
53
54 %description static -l pl
55 Biblioteki statyczne SOAP.
56
57 %prep
58 %setup  -q
59
60 %build
61 rm -f missing
62 %{__libtoolize}
63 %{__aclocal}
64 %{__autoheader}
65 %{__autoconf}
66 %{__automake}
67
68 %configure \
69         --enable-ssl \
70         --enable-gtk-doc \
71         --with-html-dir=%{_gtkdocdir}
72
73 %{__make}
74
75 %install
76 rm -rf $RPM_BUILD_ROOT
77
78 %{__make} install \
79         pkgconfigdir=%{_pkgconfigdir} \
80         m4datadir=%{_aclocaldir} \
81         DESTDIR=$RPM_BUILD_ROOT
82
83 %clean
84 rm -rf $RPM_BUILD_ROOT
85
86 %post   -p /sbin/ldconfig
87 %postun -p /sbin/ldconfig
88
89 %files
90 %defattr(644,root,root,755)
91 %doc AUTHORS ChangeLog README TODO
92 %attr(755,root,root) %{_libdir}/lib*.so.*.*
93 %attr(755,root,root) %{_libdir}/libsoup-ssl-proxy
94
95 %files devel
96 %defattr(644,root,root,755)
97 %attr(755,root,root) %{_libdir}/lib*.so
98 %{_libdir}/lib*.la
99 %{_includedir}/*
100 %{_pkgconfigdir}/*
101
102 %files static
103 %defattr(644,root,root,755)
104 %{_libdir}/lib*.a
This page took 0.03889 seconds and 4 git commands to generate.