]> git.pld-linux.org Git - packages/libsoup.git/blob - libsoup.spec
3ba3ef1edac8ccb06efa2d2749c1f7841e149ba0
[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.22
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 # Source0-md5: 6ab7b945fbd8ec79274864433eed4e90
11 URL:            http://www.gnome.org/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  glib2-devel
15 BuildRequires:  gtk-doc
16 BuildRequires:  libtool
17 BuildRequires:  openssl-devel >= 0.9.7
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
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.122989 seconds and 3 git commands to generate.