From: Matt S Trout Date: Sun, 9 Sep 2012 18:32:31 +0000 (+0000) Subject: distify X-Git-Tag: v1.000000~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=570ccfc8828e5a40de6af65305484ca35e4cdb13;p=p5sagit%2Fcurry.git distify --- diff --git a/Changes b/Changes new file mode 100644 index 0000000..7185c76 --- /dev/null +++ b/Changes @@ -0,0 +1 @@ + - Initial release diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..918cd8c --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,10 @@ +use strict; +use warnings FATAL => 'all'; +use ExtUtils::MakeMaker; + +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; + +WriteMakefile( + NAME => 'curry', + VERSION_FROM => 'lib/curry.pm' +); diff --git a/maint/Makefile.PL.include b/maint/Makefile.PL.include new file mode 100644 index 0000000..dc0d14a --- /dev/null +++ b/maint/Makefile.PL.include @@ -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 'mst - Matt S. Trout (cpan:MSTROUT) ';