1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
DISTNAME => 'HTTP-Request-AsCGI',
NAME => 'HTTP::Request::AsCGI',
AUTHOR => "Christian\ Hansen\ \<ch\@ngmedia\.com\>\,\ Hans\ Dieter\ Pearcey\ \<hdp\@cpan\.org\>",
ABSTRACT => "Set\ up\ a\ CGI\ environment\ from\ an\ HTTP\:\:Request",
VERSION => '1.2',
EXE_FILES => [ qw() ],
(eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
PREREQ_PM => {
"Test::More" => '0',
"IO::File" => '0',
"HTTP::Response" => '1.53',
"URI::Escape" => '0',
"Class::Accessor" => '0',
"HTTP::Request" => '0',
"Carp" => '0',
},
test => {TESTS => 't/*.t'}
);
|