add DESTROY methods to placate perl >= 5.13.1
[catagits/HTML-Zoom.git] / Makefile.PL
index 12e9fc4..0dc20df 100644 (file)
@@ -1,5 +1,13 @@
-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';
 
-WriteAll;
+WriteMakefile(
+  NAME => 'HTML-Zoom',
+  VERSION_FROM => 'lib/HTML/Zoom.pm',
+  PREREQ_PM => { strictures => 1, 'Test::More' => '0.88' },
+  test => { TESTS => 't/*.t t/*/*.t' },
+);