X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=7987571a691e855d78c892b99a34cc51cd6b381b;hb=7d49eba96e57e1d2825b29427c1890ce429f0205;hp=7a0cf78bb3a09caf7803a02ffdf1aebb16000c8d;hpb=5d1f8c8846b4d7f9fa1009e52b8ca8d54f308afa;p=scpubgit%2FHTML-String.git diff --git a/Makefile.PL b/Makefile.PL index 7a0cf78..7987571 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,14 +1,18 @@ use strict; -use warnings; +use warnings FATAL => 'all'; use ExtUtils::MakeMaker; +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; + + WriteMakefile( - NAME => 'HTML-String', - VERSION => '1.0', + NAME => 'HTML::String', + VERSION_FROM => 'lib/HTML/String.pm', PREREQ_PM => { 'Safe::Isa' => 1, 'Data::Munge' => '0.04', 'B::Hooks::EndOfScope' => '0.11', 'strictures' => 1, + 'UNIVERSAL::ref' => 0.14, } );