]> git.pld-linux.org Git - packages/gsoap.git/blob - gsoap.spec
- Release 5: install stdsoap2.c and .cpp for client/server libraries
[packages/gsoap.git] / gsoap.spec
1 Summary:        gSOAP - a development toolkit for Web services
2 Summary(pl):    gSOAP - zestawem narzêdzi programistycznych dla us³ug WWW
3 Name:           gsoap
4 Version:        2.7
5 Release:        5
6 License:        gSOAP public license
7 Group:          Development/Libraries
8 Source0:        http://dl.sourceforge.net/gsoap2/%{name}-%{version}.tar.gz
9 # Source0-md5:  c48eb15227892f94d00934bce63ef504
10 Patch0:         %{name}-with-openssl.patch
11 URL:            http://www.cs.fsu.edu/~engelen/soap.html
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  bison
15 BuildRequires:  flex
16 BuildRequires:  libstdc++-devel
17 BuildRequires:  openssl-devel
18 BuildRequires:  pkgconfig
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 gSOAP provides a cross-platform development toolkit for developing
23 server, client, and peer Web service applications in C and C++.
24
25 %description -l pl
26 gSOAP udostêpnia wieloplatformowe narzêdzia programistyczne do
27 tworzenia serwerów, klientów i partnerów aplikacji us³ug WWW w C i
28 C++.
29
30 %prep
31 %setup -q
32 %patch0 -p1
33
34 %build
35 %{__aclocal}
36 %{__automake}
37 %{__autoconf}
38 %configure \
39     --with-openssl
40
41 %{__make}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 %{__make} install \
47         DESTDIR=$RPM_BUILD_ROOT
48
49 install -d $RPM_BUILD_ROOT%{_libdir}/%{name}
50 install soapcpp2/stdsoap2.c $RPM_BUILD_ROOT%{_libdir}/%{name}
51 install soapcpp2/stdsoap2.cpp $RPM_BUILD_ROOT%{_libdir}/%{name}
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %files
57 %defattr(644,root,root,755)
58 %doc soapcpp2/COPYING.txt soapcpp2/README.txt soapcpp2/*.html
59 %attr(755,root,root) %{_bindir}/*
60 %{_includedir}/*
61 %{_libdir}/*.a
62 %{_libdir}/%{name}/stdsoap2.*
63 %{_pkgconfigdir}/*.pc
This page took 0.043879 seconds and 3 git commands to generate.