]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/blob - Makefile.PL
Check in prepare() if there isn't an ebuild available yet
[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         'List::Util'        => 0,
37         'File::Copy'        => 0,
38         'File::Path'        => 0,
39         'File::Spec'        => 0,
40         'IPC::Cmd'          => 0,
41         'Parse::CPAN::Meta' => 0,
42         'base'              => 0,
43     },
44     MIN_PERL_VERSION => 5.006,
45     META_MERGE       => \%META,
46     dist             => {
47         PREOP      => 'pod2text lib/CPANPLUS/Dist/Gentoo.pm > $(DISTVNAME)/README',
48         COMPRESS   => 'gzip -9f', SUFFIX => 'gz'
49     },
50     clean            => {
51         FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
52     },
53 );