Remove .git from MANIFEST
[catagits/Catalyst-Plugin-Cache.git] / Makefile.PL
index 7d8f319..31446c9 100644 (file)
@@ -1,17 +1,15 @@
-use ExtUtils::MakeMaker;
-WriteMakefile(
-    'NAME'         => 'Catalyst::Plugin::Cache',
-    'VERSION_FROM' => 'lib/Catalyst/Plugin/Cache.pm',
-    'PREREQ_PM'    => {
-        'Catalyst'        => '5.7',
-        'Storable'        => 0,
-        'Task::Weaken'    => 0,
-        'Test::Deep'      => 0,
-        'Test::Exception' => 0,
-        'Test::More'      => 0,
-    },
-    'INSTALLDIRS' => 'site',
-    'EXE_FILES'   => [],
-    'PL_FILES'    => {},
-    'SIGN'        => 1,
-);
+use inc::Module::Install;
+
+name 'Catalyst-Plugin-Cache';
+all_from 'lib/Catalyst/Plugin/Cache.pm';
+requires        'Catalyst'        => '5.8';
+requires 'Storable'        => 0;
+requires        'Task::Weaken'    => 0;
+test_requires        'Test::Deep'      => 0;
+test_requires        'Test::Exception' => 0;
+test_requires        'Test::More'      => '0.88';
+requires        'MRO::Compat'     => 0;
+
+resources repository  => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-Cache.git';
+WriteAll;
+