X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=29d1754d50044ac29ba9943881fd6883ca2ccbd6;hb=71a941fd3ec9bae9f601138e9a280aba273ed67b;hp=5f06a32d368796d75b39c8e3885137d80af0b8be;hpb=ffed8b01eb6e0d22e36c84491a96067b54ac7087;p=dbsrgits%2FDBM-Deep.git diff --git a/Build.PL b/Build.PL index 5f06a32..29d1754 100644 --- a/Build.PL +++ b/Build.PL @@ -6,20 +6,25 @@ my $build = Module::Build->new( module_name => 'DBM::Deep', license => 'perl', requires => { -# 'Carp' => '0.01', + perl => '5.6.0', 'Digest::MD5' => '1.00', - 'Scalar::Util' => '1.18', + 'Fcntl' => '0.01', + 'Scalar::Util' => '1.14', }, optional => { }, build_requires => { + 'File::Path' => '0.01', + 'File::Temp' => '0.01', + 'Test::Deep' => '0.094', '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;