changelog for __END__ fix
[p5sagit/Module-Metadata.git] / Makefile.PL
CommitLineData
a4891190 1use strict;
2use warnings FATAL => 'all';
3use ExtUtils::MakeMaker;
4
f1d18ad3 5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
a4891190 6
7WriteMakefile(
8 NAME => 'Module::Metadata',
4850170c 9 VERSION_FROM => 'lib/Module/Metadata.pm',
10 PREREQ_PM => {
8f9f6d27 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,
4850170c 19 },
7e57a40e 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 },
a4891190 28);