Properly handle BOMs at the beginning of the file
[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 },
a4891190 20);