fix method modifier breakage on 5.10.0
[gitmo/Role-Tiny.git] / Makefile.PL
index d64aaa7..680e5f6 100644 (file)
@@ -13,7 +13,7 @@ my %BUILD_DEPS = (
 my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 };
 
 WriteMakefile(
-  NAME => 'Role-Tiny',
+  NAME => 'Role::Tiny',
   VERSION_FROM => 'lib/Role/Tiny.pm',
   PREREQ_PM => {
     ($] >= 5.010 ? () : ('MRO::Compat' => 0)),
@@ -24,8 +24,13 @@ WriteMakefile(
   META_ADD => {
     resources => {
       # r/w: gitmo@git.shadowcat.co.uk:Role-Tiny.git
-      repository => 'git://git.shadowcat.co.uk/Role-Tiny.git',
+      repository => 'git://git.shadowcat.co.uk/gitmo/Role-Tiny.git',
     },
   },
 
+  META_MERGE => {
+    no_index => {
+      directory => [ 'xt' ]
+    }
+  },
 );