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