443bcee4f1ec100306cd77fa6d5521246db21461
[p5sagit/Module-Metadata.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'Module::Metadata',
9   VERSION_FROM => 'lib/Module/Metadata.pm',
10   ABSTRACT_FROM => 'lib/Module/Metadata.pm',
11   LICENSE => 'perl',
12   PREREQ_PM => {
13     'Carp'        => 0,
14     'File::Find'  => 0,
15     'File::Spec'  => 0,
16     'IO::File'    => 0,
17     'strict'      => 0,
18     'warnings'    => 0,
19     'vars'        => 0,
20     'version'     => 0.87,
21     'warnings'    => 0,
22     $] < 5.008
23       ? ( 'IO::Scalar' => 0 )
24       : ()
25     ,
26   },
27   META_MERGE => {
28     'meta-spec' => { version => 2 },
29     dynamic_config => 0,
30     resources => {
31       # r/w: p5sagit@git.shadowcat.co.uk:Module-Metadata.git
32       repository => {
33         url => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git',
34         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git',
35         type => 'git',
36       },
37       bugtracker => {
38           mailto => 'bug-Module-Metadata@rt.cpan.org',
39           web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
40       },
41     },
42   },
43 );