cleanup Changes formatting
[catagits/HTML-Zoom.git] / Makefile.PL
index 0b9d6e1..545d94c 100644 (file)
@@ -1,7 +1,12 @@
-use inc::Module::Install;
+use strict;
+use warnings FATAL => 'all';
+use 5.008001;
+use ExtUtils::MakeMaker;
 
-all_from('lib/HTML/Zoom.pm');
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
 
-requires 'strictures' => 1;
-
-WriteAll;
+WriteMakefile(
+  NAME => 'HTML-Zoom',
+  VERSION_FROM => 'lib/HTML/Zoom.pm',
+  PREREQ_PM => { strictures => 1 }
+);