]> git.vpit.fr Git - perl/modules/with.git/blob - Makefile.PL
Give an explicit value to dynamic_config
[perl/modules/with.git] / Makefile.PL
1 use 5.009004;
2
3 use strict;
4 use warnings;
5 use ExtUtils::MakeMaker;
6
7 my $dist = 'with';
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             => 'with',
28     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
29     LICENSE          => 'perl',
30     VERSION_FROM     => 'lib/with.pm',
31     ABSTRACT_FROM    => 'lib/with.pm',
32     PL_FILES         => {},
33     PREREQ_PM        => {
34         'Carp'                 => 0,
35         'Filter::Util::Call'   => 0,
36         'Scalar::Util'         => 0,
37         'Sub::Prototype::Util' => 0.08,
38         'Text::Balanced'       => 0,
39     },
40     MIN_PERL_VERSION => 5.009004,
41     META_MERGE       => \%META,
42     dist             => {
43         PREOP    => 'pod2text lib/with.pm > $(DISTVNAME)/README',
44         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
45     },
46     clean            => {
47         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
48     },
49 );