-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
48 lines (46 loc) · 1.46 KB
/
Build.PL
File metadata and controls
48 lines (46 loc) · 1.46 KB
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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'App::VTide',
license => 'perl',
dist_author => 'Ivan Wills <ivan.wills@gmail.com>',
dist_version_from => 'lib/App/VTide.pm',
requires => {
'perl' => '5.014',
'Algorithm::Cron' => '0.10',
'Array::Utils' => 0,
'File::chdir' => '0.1008',
'Getopt::Alt' => '0.5.2',
'Hash::Merge::Simple' => '0.051',
'IO::Prompt' => 0,
'List::MoreUtils' => '0.413',
'List::Util' => '1.41',
'Module::Pluggable' => 0,
'Moo' => '2.000001',
'Path::Tiny' => '0.068',
'Scalar::Util' => '1.41',
'Tie::Handle::Scalar' => 0,
'version' => '0.9909',
'YAML::Syck' => '1.29',
},
recommends => {
'Term::Title' => 0.
},
configure_requires => {
'Module::Build' => 0.38,
},
build_requires => {
'Test::More' => '0.88',
'Test::Warnings' => '0.026',
},
add_to_cleanup => [ 'App-VTide-*' ],
create_license => 1,
meta_merge => {
resources => {
repository => 'git://github.com/ivanwills/App-VTide.git',
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=App::VTide',
},
},
);
$builder->create_build_script();