File: Makefile.PL

package info (click to toggle)
libhttp-request-params-perl 1.02-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 80 kB
  • sloc: perl: 130; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 809 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;

WriteMakefile (
               AUTHOR        => ['Casey West <casey@geeknest.com>', 'Ian Stuart <Ian.Stuart@ed.ac.uk>'],
               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',
              );