From: Matt S Trout Date: Fri, 23 Dec 2011 07:41:08 +0000 (+0000) Subject: basic dist infrastructure X-Git-Tag: v0.001001~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8b57077df832399181fbb060574b338fed30c866;p=scpubgit%2FTak-Daemon.git basic dist infrastructure --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..09d578b --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,21 @@ +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 => 'Tak::Daemon', + VERSION_FROM => 'lib/Tak/Daemon.pm', + PREREQ_PM => { + 'Tak' => '0.001002', + 'IO::Async' => '0.45' + }, + LICENSE => 'perl', + META_MERGE => { + resources => { + license => 'http://dev.perl.org/licenses/', + repository => 'git://git.shadowcat.co.uk/scpubgit/Tak-Daemon.git', + }, + } +); 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) ';