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