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