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