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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
use strict;
use warnings;
BEGIN { require 5.006; }
use ExtUtils::MakeMaker 6.11;
my %WriteMakefileArgs = (
'test' => {
'TESTS' => 't/*.t'
},
'NAME' => 'CPAN::Mini',
'DISTNAME' => 'CPAN-Mini',
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.11'
},
'AUTHOR' => 'Ricardo SIGNES <rjbs@cpan.org>, Randal Schwartz <merlyn@stonehenge.com>',
'BUILD_REQUIRES' => {},
'ABSTRACT' => 'create a minimal mirror of CPAN',
'EXE_FILES' => [
'bin/minicpan'
],
'VERSION' => '1.100630',
'PREREQ_PM' => {
'File::Copy' => 0,
'Getopt::Long' => 0,
'Compress::Zlib' => '1.20',
'URI' => '1',
'Pod::Usage' => '1.00',
'File::HomeDir' => '0.57',
'File::Spec' => 0,
'Carp' => 0,
'Test::More' => 0,
'LWP::UserAgent' => '5',
'File::Find' => 0,
'File::Temp' => 0,
'File::Path' => '2.04',
'File::Basename' => 0
},
'LICENSE' => 'perl'
);
delete $WriteMakefileArgs{LICENSE}
unless eval { ExtUtils::MakeMaker->VERSION(6.31) };
WriteMakefile(%WriteMakefileArgs);
|