-
Notifications
You must be signed in to change notification settings - Fork 20
/
Build.PL
58 lines (54 loc) · 2.09 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
48
49
50
51
52
53
54
55
56
57
use utf8;
use strict;
use Module::Build;
my $build = Module::Build->new(
dist_author => 'Lars Dɪᴇᴄᴋᴏᴡ <[email protected]>',
module_name => 'Module::CPANTS::Analyse',
license => 'perl',
requires => {
'Class::Accessor' => '0.19',
'Archive::Any::Lite' => '0.06',
'Archive::Tar' => '1.48', #depends on IO::Compress without memory leak
'CPAN::DistnameInfo' => '0.06',
'Pod::Simple::Checker' => '2.02',
'YAML::Any' => 0,
'Module::ExtractUse' => '0.24', #works with new Parse::RecDescent
'Module::Pluggable' => '2.96',
'IO::Capture' => '0.05',
'Array::Diff' => '0.04',
'version' => '0.73',
'File::Find::Rule' => '0',
'Readonly' => '0',
'Software::License' => '0.003',
'perl' => 5.006,
'Test::CPAN::Meta::YAML::Version' => '0.21', # Interface change
'ExtUtils::Manifest' => 0,
'Set::Scalar' => 0,
'File::chdir' => 0,
'Module::Signature' => 0,
},
build_requires => {
'Test::More' => '0',
'Test::Deep' => '0',
'Test::Warn' => '0.11', #less problems with new Sub::Uplevel
'Test::NoWarnings' => '0',
'Cwd' => '0',
},
configure_requires => {
'Module::Build' => '0.4',
},
meta_merge => {
resources => {
homepage => 'http://cpants.perl.org',
repository => 'https://github.com/daxim/Module-CPANTS-Analyse',
bugtracker => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-CPANTS-Analyse',
},
keywords => [
'CPANTS','kwalitee',
],
},
script_files=>[qw(bin/cpants_lint.pl)],
create_makefile_pl=>'traditional',
);
$build->add_to_cleanup('Debian_CPANTS.txt');
$build->create_build_script;