r589@rob-kinyons-computer-2 (orig r10513): rkinyon | 2008-01-10 23:43:55 -0500
[dbsrgits/DBM-Deep.git] / Build.PL
1 use Module::Build;
2
3 use strict;
4
5 my $build = Module::Build->new(
6     module_name => 'DBM::Deep',
7     license => 'perl',
8     requires => {
9         'perl'              => '5.006_000',
10         'Fcntl'             => '0.01',
11         'Scalar::Util'      => '1.14',
12         'Digest::MD5'       => '1.00',
13         'FileHandle::Fmode' => '0.05',
14     },
15     optional => {
16         'Pod::Usage'        => '1.3',
17     },
18     build_requires => {
19         'File::Path'      => '0.01',
20         'File::Temp'      => '0.01',
21         'Test::Deep'      => '0.095',
22         'Test::Warn'      => '0.08',
23         'Test::More'      => '0.47',
24         'Test::Exception' => '0.21',
25         'IO::Scalar'      => '0.01',
26     },
27     create_makefile_pl => 'traditional',
28     add_to_cleanup => [
29         'META.yml', '*.bak', '*.gz', 'Makefile.PL', 'cover_db',
30     ],
31     test_files => 't/??_*.t',
32 );
33
34 $build->create_build_script;