forked from mjgardner/test-class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
28 lines (27 loc) · 836 Bytes
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use Module::Build;
my $build = Module::Build->new(
module_name => 'Test::Class',
license => 'perl',
requires => {
'perl' => '5.006001',
'Attribute::Handlers' => '0.77',
'MRO::Compat' => '0.11',
'Storable' => '2.04',
'Test::Simple' => '0.78',
'Test::Builder' => '0.78',
'Test::Builder::Tester' => '1.02',
'Test::More' => '0.78',
},
build_requires => {
'Test::Exception' => '0.25',
'IO::File' => '1.09',
},
meta_merge => {
resources => {
repository => 'http://github.com/adrianh/test-class/',
},
},
create_makefile_pl => 'traditional',
create_readme => 1,
);
$build->create_build_script;