add git repository metadata
[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   PREREQ_PM => {
11     'Carp'        => 0,
12     'File::Find'  => 0,
13     'File::Spec'  => 0,
14     'IO::File'    => 0,
15     'strict'      => 0,
16     'vars'        => 0,
17     'version'     => 0.87,
18     'warnings'    => 0,
19   },
20   META_MERGE => {
21     dynamic_config => 0,
22     resources => {
23       # r/w: p5sagit@git.shadowcat.co.uk:Module-Metadata.git
24       repository => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git',
25       homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git',
26     },
27   },
28 );