From: Matt S Trout Date: Thu, 3 May 2012 20:06:02 +0000 (+0000) Subject: distify X-Git-Tag: v1.000000~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FImport-Into.git;a=commitdiff_plain;h=38a56c0f953f25a470e81024eef2f3d66c367359 distify --- diff --git a/Changes b/Changes new file mode 100644 index 0000000..3312fdf --- /dev/null +++ b/Changes @@ -0,0 +1 @@ + - initial release diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..f595a04 --- /dev/null +++ b/Makefile.PL @@ -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 index 0000000..3f4e47a --- /dev/null +++ b/maint/Makefile.PL.include @@ -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) ';