root/lang/perl/Acme-CPANAuthors/trunk/Makefile.PL

Revision 22480, 0.8 kB (checked in by charsbar, 2 months ago)

Acme-CPANAuthors: remove CPAN::Config dep; try to find CPAN sources via CPANPLUS config, too; 0.06 -> CPAN

  • Property svn:eol-style set to native
Line 
1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4
5WriteMakefile(
6  NAME           => 'Acme::CPANAuthors',
7  AUTHOR         => 'Kenichi Ishigaki <ishigaki@cpan.org>',
8  VERSION_FROM   => 'lib/Acme/CPANAuthors.pm',
9  ABSTRACT_FROM  => 'lib/Acme/CPANAuthors.pm',
10  PREREQ_PM => {
11    'Carp'                   => 0,
12    'Exporter'               => 0,
13    'File::Spec'             => 0,
14    'Gravatar::URL'          => 0,
15    'Module::Find'           => 0,
16    'Parse::CPAN::Authors'   => '2.27',
17    'Parse::CPAN::Packages'  => '2.27',
18    'Test::More'             => '0.47',
19    'Test::UseAllModules'    => '0.09',
20    'URI'                    => 0,
21    'Web::Scraper'           => '0.21',
22  },
23  ($ExtUtils::MakeMaker::VERSION >= 6.31
24    ? (LICENSE => 'perl')
25    : ()
26  ),
27);
Note: See TracBrowser for help on using the browser.