-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBuild.PL
47 lines (45 loc) · 1.2 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use 5.006;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Git::Repository::Plugin::Blame',
license => 'GPL_3',
dist_author => q{Guillaume Aubert <[email protected]>},
dist_version_from => 'lib/Git/Repository/Plugin/Blame.pm',
build_requires =>
{
'Data::Dumper' => 0,
'Carp' => 0,
'Git::Repository' => 1.20,
'Perl6::Slurp' => 0,
'Test::Deep' => 0,
'Test::Exception' => 0,
'Test::Git' => 0,
'Test::More' => 0,
},
requires =>
{
'perl' => 5.006,
},
add_to_cleanup =>
[
'Git-Repository-Plugin-Blame-*',
],
create_makefile_pl => 'traditional',
recursive_test_files => 1,
configure_requires =>
{
'Module::Build' => 0,
},
meta_merge =>
{
resources =>
{
repository => 'https://github.com/guillaumeaubert/Git-Repository-Plugin-Blame',
homepage => 'https://metacpan.org/release/Git-Repository-Plugin-Blame',
bugtracker => 'https://github.com/guillaumeaubert/Git-Repository-Plugin-Blame/issues',
},
},
);
$builder->create_build_script();