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