-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
27 lines (25 loc) · 847 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Test::Specific',
license => 'perl',
dist_author => 'Jeff Lavallee <[email protected]>',
dist_version_from => 'lib/Test/Specific.pm',
meta_merge => {
resources => {
#bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Specific',
repository => 'http://github.com/jlavallee/Test-Specific/',
}
},
build_requires => {
'Test::More' => 0,
'Digest::MD5' => '',
'XML::Simple' => '',
'XML::Parser' => '',
'File::Temp' => '',
'Test::Builder::Tester' => '',
},
add_to_cleanup => [ 'Test-Specific-*' ],
);
$builder->create_build_script();