replace Makefile.PL with dist.ini
[catagits/HTML-Zoom.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..0dc20df
--- /dev/null
@@ -0,0 +1,13 @@
+use strict;
+use warnings FATAL => 'all';
+use 5.008001;
+use ExtUtils::MakeMaker;
+
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+WriteMakefile(
+  NAME => 'HTML-Zoom',
+  VERSION_FROM => 'lib/HTML/Zoom.pm',
+  PREREQ_PM => { strictures => 1, 'Test::More' => '0.88' },
+  test => { TESTS => 't/*.t t/*/*.t' },
+);