extract role application to be step based
[gitmo/Role-Tiny.git] / Makefile.PL
index c99c9e7..4239cb9 100644 (file)
@@ -1,11 +1,36 @@
 use strict;
 use warnings FATAL => 'all';
+use 5.006;
 use ExtUtils::MakeMaker;
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+my %BUILD_DEPS = (
+  'Test::More' => 0.96,
+  'Test::Fatal' => 0.003,
+);
+
+# have to do this since old EUMM dev releases miss the eval $VERSION line
+my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 };
 
 WriteMakefile(
-  NAME => 'Moo',
-  VERSION_FROM => 'lib/Moo.pm',
-  ABSTRACT_FROM => 'lib/Moo.pm',
-  AUTHOR => 'Matt S Trout <mst@shadowcat.co.uk>',
-  LICENSE => 'perl',
+  NAME => 'Role::Tiny',
+  VERSION_FROM => 'lib/Role/Tiny.pm',
+  PREREQ_PM => {
+    ($] >= 5.010 ? () : ('MRO::Compat' => 0)),
+    ($mymeta_works ? () : (%BUILD_DEPS)),
+  },
+  $mymeta_works ? (BUILD_REQUIRES => \%BUILD_DEPS) : (),
+
+  META_ADD => {
+    resources => {
+      # r/w: gitmo@git.shadowcat.co.uk:Role-Tiny.git
+      repository => 'git://git.shadowcat.co.uk/gitmo/Role-Tiny.git',
+    },
+  },
+
+  META_MERGE => {
+    no_index => {
+      directory => [ 'xt' ]
+    }
+  },
 );