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