-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
27 lines (25 loc) · 741 Bytes
/
Build.PL
File metadata and controls
27 lines (25 loc) · 741 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Versionify::Dispatch',
license => 'perl',
dist_author => 'Glenn Fowler <cebjyre@cpan.org>',
dist_version_from => 'lib/Versionify/Dispatch.pm',
requires => {
'version' => 0,
'Moose' => 0,
'MooseX::FollowPBP' => 0,
'Sort::Versions' => 0,
},
build_requires => {
'Test::More' => 0,
},
meta_merge => {
resources => {
repository => 'http://github.com/cebjyre/Versionify-Dispatch',
},
},
add_to_cleanup => [ 'Versionify-Dispatch-*' ],
);
$builder->create_build_script();