]> git.vpit.fr Git - perl/modules/B-RecDeparse.git/blob - Makefile.PL
Give an explicit value to dynamic_config
[perl/modules/B-RecDeparse.git] / Makefile.PL
1 use 5.008;
2
3 use strict;
4 use warnings;
5 use ExtUtils::MakeMaker;
6
7 my $dist = 'B-RecDeparse';
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             => 'B::RecDeparse',
28     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
29     LICENSE          => 'perl',
30     VERSION_FROM     => 'lib/B/RecDeparse.pm',
31     ABSTRACT_FROM    => 'lib/B/RecDeparse.pm',
32     PL_FILES         => {},
33     PREREQ_PM        => {
34         'B::Deparse' => 0,
35         'Config'     => 0,
36         'Carp'       => 0,
37         'base'       => 0,
38     },
39     MIN_PERL_VERSION => 5.008,
40     META_MERGE       => \%META,
41     dist             => {
42         PREOP    => 'pod2text lib/B/RecDeparse.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 );