]> git.vpit.fr Git - perl/modules/Sub-Prototype-Util.git/blob - Makefile.PL
0198168adace38cbb0c7c532ce5f175f9b817885
[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  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/modules/$dist.git",
23  },
24 );
25
26 WriteMakefile(
27     NAME             => 'Sub::Prototype::Util',
28     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
29     LICENSE          => 'perl',
30     VERSION_FROM     => 'lib/Sub/Prototype/Util.pm',
31     ABSTRACT_FROM    => 'lib/Sub/Prototype/Util.pm',
32     PL_FILES         => {},
33     PREREQ_PM        => {
34         'Carp'         => 0,
35         'Exporter'     => 0,
36         'Scalar::Util' => 0
37     },
38     MIN_PERL_VERSION => 5.006,
39     META_MERGE       => \%META,
40     dist             => {
41         PREOP    => 'pod2text lib/Sub/Prototype/Util.pm > $(DISTVNAME)/README',
42         COMPRESS => 'gzip -9f', SUFFIX => 'gz'
43     },
44     clean            => {
45         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
46     }
47 );