From: Robert 'phaylon' Sedlacek Date: Wed, 23 May 2012 22:21:32 +0000 (+0000) Subject: turned into a distribution X-Git-Tag: v0.000001~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FFile-Tree-Snapshot.git;a=commitdiff_plain;h=5fb7cafc485ac764e4935f9131f448ef9332ccc3 turned into a distribution --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..4e46a4d --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,40 @@ +use strict; +use warnings; + +use ExtUtils::MakeMaker; + +my %build_requires => ( +); + +my %requires = ( + 'Moo' => 0.009013, + 'File::Path' => 0, + 'File::Basename' => 0, +) + +# have to do this since old EUMM dev releases miss the eval $VERSION line +my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 }; +my $mymeta = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5702 }; + +WriteMakefile( + NAME => 'File-Tree-Snapshot', + VERSION_FROM => 'lib/File/Tree/Snapshot.pm', + PREREQ_PM => { + %requires, + ($mymeta_works ? () : (%build_requires)), + }, + ($mymeta_works + ? ( # BUILD_REQUIRES makes MYMETA right, requires stops META being wrong + BUILD_REQUIRES => \%build_requires, + META_ADD => { requires => \%requires } + ) + : ( # META_ADD both to get META right - only Makefile written + META_ADD => { + requires => \%requires, + build_requires => \%build_requires, + } + ) + ), + ($mymeta && !$mymeta_works ? (NO_MYMETA => 1) : ()), + LICENSE => 'perl', +);;