]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/blob - Makefile.PL
base.pm is also a dependency
[perl/modules/CPANPLUS-Dist-Gentoo.git] / Makefile.PL
1 use 5.006;
2
3 use strict;
4 use warnings;
5 use ExtUtils::MakeMaker;
6
7 my $dist = 'CPANPLUS-Dist-Gentoo';
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  resources => {
18   bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
19   homepage   => "http://search.cpan.org/dist/$dist/",
20   license    => 'http://dev.perl.org/licenses/',
21   repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git",
22  },
23 );
24
25 WriteMakefile(
26     NAME             => 'CPANPLUS::Dist::Gentoo',
27     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
28     LICENSE          => 'perl',
29     VERSION_FROM     => 'lib/CPANPLUS/Dist/Gentoo.pm',
30     ABSTRACT_FROM    => 'lib/CPANPLUS/Dist/Gentoo.pm',
31     PL_FILES         => {},
32     PREREQ_PM        => {
33         'Carp'        => 0,
34         'CPANPLUS'    => 0,
35         'Cwd'         => 0,
36         'File::Copy'  => 0,
37         'File::Path'  => 0,
38         'File::Spec'  => 0,
39         'IPC::Cmd'    => 0,
40         'base'        => 0,
41     },
42     MIN_PERL_VERSION => 5.006,
43     META_MERGE       => \%META,
44     dist             => {
45         PREOP      => 'pod2text lib/CPANPLUS/Dist/Gentoo.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 );