X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=563d8926c0c5cde27835119f40fd48338ad216fe;hb=cf175059836baebad1d9289e90ca415738cf4fdf;hp=73561c5352822cdabd09c00afe412e107dace61a;hpb=e59193fb8aa5245e3add439af907798562ff07c0;p=gitmo%2FMooseX-Storage.git diff --git a/Makefile.PL b/Makefile.PL index 73561c5..563d892 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,17 +1,39 @@ -use strict; -use warnings; -use ExtUtils::MakeMaker; - -WriteMakefile( - NAME => 'MooseX::Storage::JSON', - AUTHOR => 'Chris Prather ', - VERSION_FROM => 'lib/MooseX/Storage/JSON.pm', - ABSTRACT_FROM => 'lib/MooseX/Storage/JSON.pm', - PL_FILES => {}, - PREREQ_PM => { - 'Test::More' => 0, - 'version' => 0, - }, - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'MooseX-Storage-JSON-*' }, -); +# Load the Module::Install bundled in ./inc/ +use inc::Module::Install 0.75; + +# Define metadata +name 'MooseX-Storage'; +all_from 'lib/MooseX/Storage.pm'; + +# Specific dependencies +requires 'Moose' => '0.39'; + +# you should have at least one +# serialization format +feature 'JSON', + -default => 1, + 'JSON::Any' => '1.15', + 'Test::JSON' => '0.06'; + +feature 'YAML', + -default => 1, + 'Best' => '0.1', + 'Test::YAML::Valid' => '0'; + +feature 'Storable', + -default => 1, + 'Storable' => '0'; + +# and the ability to save the +# file to disk +feature 'File', + -default => 1, + 'IO::File' => '0.1'; + +build_requires 'Test::More' => '0.42'; +build_requires 'Test::Deep' => '0'; +build_requires 'Test::Exception' => '0'; +build_requires 'Test::TempDir' => '0.02'; + +auto_install; +WriteAll;