note fix in changelog
[gitmo/Role-Tiny.git] / Makefile.PL
index 6be1ce8..680e5f6 100644 (file)
@@ -13,11 +13,24 @@ 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)),
     ($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' ]
+    }
+  },
 );