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