#!/usr/bin/perl
open
(CHANGES,
">>CHANGES"
) and
close
CHANGES;
ExtUtils::AutoInstall->
import
(
-version
=>
'0.50'
,
-core
=>
[
'POE'
=> 0.25,
'HTTP::Request'
=> 1.27,
'HTTP::Response'
=> 1.33,
'URI'
=> 1.11,
],
"Optional modules for SSL support."
=>
[
-default
=> 0,
'Net::SSLeay'
=> 1.17,
'Net::SSLeay::Handle'
=> 0.61,
],
);
WriteMakefile
(
NAME
=>
'POE::Component::Client::HTTP'
,
AUTHOR
=>
'Rocco Caputo <rcaputo@cpan.org>'
,
ABSTRACT
=>
'POE component for non-blocking/concurrent HTTP queries.'
,
VERSION_FROM
=>
'HTTP.pm'
,
PM
=> {
'HTTP.pm'
=>
'$(INST_LIBDIR)/HTTP.pm'
,
'SSL.pm'
=>
'$(INST_LIBDIR)/HTTP/SSL.pm'
,
},
PREREQ_PM
=> {
'POE'
=> 0.1106,
'HTTP::Request'
=> 1.27,
'HTTP::Response'
=> 1.33,
'URI'
=> 1.11,
},
dist
=>
{
COMPRESS
=>
'gzip -9f'
,
SUFFIX
=>
'gz'
,
PREOP
=> (
'cvs-log.perl | '
.
'tee ./$(DISTNAME)-$(VERSION)/CHANGES > ./CHANGES'
),
},
);