forked from Ovid/test-aggregate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuild.PL
More file actions
29 lines (26 loc) · 782 Bytes
/
Build.PL
File metadata and controls
29 lines (26 loc) · 782 Bytes
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
29
use strict;
use warnings;
use Module::Build;
use 5.006;
my $builder = Module::Build->new(
module_name => 'Test::Aggregate',
license => 'perl',
dist_author => 'Curtis "Ovid" Poe <[email protected]>',
dist_version_from => 'lib/Test/Aggregate.pm',
build_requires => {
'Test::Simple' => 0.94, # we fail on the common 0.62
'Test::Most' => 0.21,
},
requires => {
'Test::Harness' => 3.09,
'Test::NoWarnings' => 0,
'FindBin' => 1.47,
},
recommends => {
'Data::Dump::Streamer' => 1.11,
'Perl::Tidy' => 20060614,
'Test::More' => '0.89_01',
},
add_to_cleanup => ['Test-Aggregate-*'],
);
$builder->create_build_script();