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