-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
25 lines (22 loc) · 758 Bytes
/
Build.PL
File metadata and controls
25 lines (22 loc) · 758 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'MooseX::SingletonMethod',
license => 'perl',
dist_author => 'Barry Walsh <draegtun@cpan.org>',
dist_version_from => 'lib/MooseX/SingletonMethod.pm',
build_requires => {
'Test::More' => 0,
'Moose::Role' => 0,
'Moose' => 0,
},
add_to_cleanup => [ 'MooseX-SingletonMethod-*' ],
meta_merge => {
resources => {
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-SingletonMethod',
repository => 'http://github.com/draegtun/MooseX-SingletonMethod/tree/master',
}
},
);
$builder->create_build_script();