]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/blob - Makefile.PL
Give an explicit value to dynamic_config
[perl/modules/CPANPLUS-Dist-Gentoo.git] / Makefile.PL
1 use 5.006;
2
3 use strict;
4 use warnings;
5 use ExtUtils::MakeMaker;
6
7 my $dist = 'CPANPLUS-Dist-Gentoo';
8
9 my %META = (
10  configure_requires => {
11   'ExtUtils::MakeMaker' => 0,
12  },
13  build_requires => {
14   'ExtUtils::MakeMaker' => 0,
15   'Test::More'          => 0,
16  },
17  dynamic_config => 0,
18  resources => {
19   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
20   homepage   => "http://search.cpan.org/dist/$dist/",
21   license    => 'http://dev.perl.org/licenses/',
22   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
23  },
24 );
25
26 WriteMakefile(
27     NAME             => 'CPANPLUS::Dist::Gentoo',
28     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
29     LICENSE          => 'perl',
30     VERSION_FROM     => 'lib/CPANPLUS/Dist/Gentoo.pm',
31     ABSTRACT_FROM    => 'lib/CPANPLUS/Dist/Gentoo.pm',
32     PL_FILES         => {},
33     PREREQ_PM        => {
34         'Carp'              => 0,
35         'CPANPLUS'          => 0,
36         'Cwd'               => 0,
37         'List::Util'        => 0,
38         'File::Copy'        => 0,
39         'File::Path'        => 0,
40         'File::Spec'        => 0,
41         'IPC::Cmd'          => 0,
42         'Parse::CPAN::Meta' => 0,
43         'base'              => 0,
44     },
45     MIN_PERL_VERSION => 5.006,
46     META_MERGE       => \%META,
47     dist             => {
48         PREOP      => 'pod2text lib/CPANPLUS/Dist/Gentoo.pm > $(DISTVNAME)/README',
49         COMPRESS   => 'gzip -9f', SUFFIX => 'gz'
50     },
51     clean            => {
52         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
53     },
54 );