Distar'ified distribution
Robert 'phaylon' Sedlacek [Thu, 30 Aug 2012 19:13:44 +0000 (19:13 +0000)]
Makefile.PL
maint/Makefile.PL.include [new file with mode: 0644]

index 287703a..7b92fa4 100644 (file)
@@ -3,7 +3,10 @@ use warnings;
 
 use ExtUtils::MakeMaker;
 
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
 my %build_requires => (
+    'Test::More'        => 0,
 );
 
 my %requires = (
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
new file mode 100644 (file)
index 0000000..05af156
--- /dev/null
@@ -0,0 +1,8 @@
+BEGIN {
+  -e 'Distar'
+    or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git")
+}
+use lib 'Distar/lib';
+use Distar;
+
+author 'Robert Sedlacek <r.sedlacek@shadowcat.co.uk>';