]> git.pld-linux.org Git - packages/perl-POE-Component-Server-XMLRPC.git/blob - perl-POE-Component-Server-XMLRPC.spec
4202e6a37694b57376bf6472abff1901d635d862
[packages/perl-POE-Component-Server-XMLRPC.git] / perl-POE-Component-Server-XMLRPC.spec
1 #
2 # Conditional build:
3 %bcond_without  tests   # do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define         pdir    POE
7 %define         pnam    Component-Server-XMLRPC
8 Summary:        POE::Component::Server::XMLRPC - publish POE event handlers via XMLRPC over HTTP
9 Summary(pl.UTF-8):      POE::Component::Server::XMLRPC - procedury obsługi POE przez XMLRPC po HTTP
10 Name:           perl-POE-Component-Server-XMLRPC
11 Version:        0.05
12 Release:        2
13 # same as perl
14 License:        GPL v1+ or Artistic
15 Group:          Development/Languages/Perl
16 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  263fd98df07331d64be5beb75b07835a
18 BuildRequires:  perl-devel >= 1:5.8.0
19 BuildRequires:  rpm-perlprov >= 4.1-13
20 %if %{with tests}
21 BuildRequires:  perl-POE >= 0.22
22 BuildRequires:  perl-POE-Component-Server-HTTP >= 0.02
23 BuildRequires:  perl-SOAP-Lite >= 0.28
24 %endif
25 BuildArch:      noarch
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 POE::Component::Server::XMLRPC adds asynchronous, event driven XMLRPC
30 over HTTP to your POE applications. It works very well with
31 synchronous XMLRPC::Lite clients, even.
32
33 %description -l pl.UTF-8
34 POE::Component::Server::XMLRPC dodaje asynchroniczne, sterowane
35 zdarzeniami XMLRPC po HTTP do aplikacji POE. Działa bardzo dobrze
36 nawet z synchronicznymi klientami XMLRPC::Lite.
37
38 %prep
39 %setup -q -n %{pdir}-%{pnam}-%{version}
40
41 %build
42 %{__perl} Makefile.PL \
43         INSTALLDIRS=vendor
44 %{__make}
45
46 %{?with_tests:%{__make} test}
47
48 %install
49 rm -rf $RPM_BUILD_ROOT
50
51 %{__make} install \
52         DESTDIR=$RPM_BUILD_ROOT
53 install -d $RPM_BUILD_ROOT%{_examplesdir}
54 cp -r examples $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
55
56 %clean
57 rm -rf $RPM_BUILD_ROOT
58
59 %files
60 %defattr(644,root,root,755)
61 %{perl_vendorlib}/%{pdir}/*/*/*.pm
62 %attr(755,root,root) %{_examplesdir}/%{name}-%{version}
63 %{_mandir}/man3/*
This page took 0.067117 seconds and 2 git commands to generate.