X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;fp=Makefile.PL;h=09d578bb618086e2289f04d73589fb423975e0e8;hb=8b57077df832399181fbb060574b338fed30c866;hp=0000000000000000000000000000000000000000;hpb=c3673df13ce6218bd06cf46dab9319b2a8d30845;p=scpubgit%2FTak-Daemon.git 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', + }, + } +);