File: Makefile.PL

package info (click to toggle)
libhttp-request-ascgi-perl 0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 92 kB
  • ctags: 10
  • sloc: perl: 430; makefile: 46
file content (16 lines) | stat: -rw-r--r-- 369 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!perl

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME         => 'HTTP::Request::AsCGI',
    VERSION_FROM => 'lib/HTTP/Request/AsCGI.pm',
    PREREQ_PM    => {
        Carp             => 0,
        Class::Accessor  => 0,        
        HTTP::Request    => 0,
        HTTP::Response   => 1.53,
        IO::File         => 0,
        Test::More       => 0
    }
);