forked from gitpan/HTTP-Request-Params
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
16 lines (15 loc) · 809 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;
WriteMakefile (
ABSTRACT => "Retrieve GET/POST Parameters from HTTP Requests",
NAME => 'HTTP::Request::Params',
PREREQ_PM => {
'CGI' => '3.00',
'Class::Accessor::Fast' => '0.19',
'Email::MIME::ContentType' => '1.0',
'Email::MIME' => '1.42',
'HTTP::Request' => '1.40',
'HTTP::Request::Common' => '1.26',
},
VERSION_FROM => 'lib/HTTP/Request/Params.pm',
);