-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathBuild.PL
More file actions
30 lines (27 loc) · 820 Bytes
/
Build.PL
File metadata and controls
30 lines (27 loc) · 820 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
30
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 <ovid@cpan.org>',
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.94',
},
add_to_cleanup => ['Test-Aggregate-*'],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();