distify
Matt S Trout [Thu, 3 May 2012 20:06:02 +0000 (20:06 +0000)]
Changes [new file with mode: 0644]
Makefile.PL [new file with mode: 0644]
maint/Makefile.PL.include [new file with mode: 0644]

diff --git a/Changes b/Changes
new file mode 100644 (file)
index 0000000..3312fdf
--- /dev/null
+++ b/Changes
@@ -0,0 +1 @@
+  - initial release
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..f595a04
--- /dev/null
@@ -0,0 +1,12 @@
+use strict;
+use warnings FATAL => 'all';
+use 5.008001;
+use ExtUtils::MakeMaker;
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+WriteMakefile(
+  NAME => 'Import::Into',
+  VERSION_FROM => 'lib/Import/Into.pm',
+  PREREQ_PM => { },
+  LICENSE => 'perl',
+);
diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include
new file mode 100644 (file)
index 0000000..3f4e47a
--- /dev/null
@@ -0,0 +1,5 @@
+BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
+use lib 'Distar/lib';
+use Distar;
+
+author 'mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>';