X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=420b96d1569d6cd038610e75e62c9a5ae850d5b6;hb=12b96196fd8fb359b99e6d4d8fde6ef67def1c6b;hp=5f06a32d368796d75b39c8e3885137d80af0b8be;hpb=ffed8b01eb6e0d22e36c84491a96067b54ac7087;p=dbsrgits%2FDBM-Deep.git diff --git a/Build.PL b/Build.PL index 5f06a32..420b96d 100644 --- a/Build.PL +++ b/Build.PL @@ -6,21 +6,27 @@ my $build = Module::Build->new( module_name => 'DBM::Deep', license => 'perl', requires => { -# 'Carp' => '0.01', - 'Digest::MD5' => '1.00', - 'Scalar::Util' => '1.18', + 'perl' => '5.6.0', + 'Clone::Any' => '0', + 'Digest::MD5' => '1.00', + 'Fcntl' => '0.01', + 'FileHandle::Fmode' => '0.05', + 'Scalar::Util' => '1.14', }, optional => { }, build_requires => { + 'File::Path' => '0.01', + 'File::Temp' => '0.01', + 'Test::Deep' => '0.095', 'Test::More' => '0.47', 'Test::Exception' => '0.21', }, create_makefile_pl => 'traditional', add_to_cleanup => [ - 'META.yml', '*.bak', '*.gz', 'Makefile.PL', 't/test*.db', + 'META.yml', '*.bak', '*.gz', 'Makefile.PL', 't/test*.db', 'cover_db' ], + test_files => 't/??_*.t', ); $build->create_build_script; -