-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
60 lines (58 loc) · 3.01 KB
/
Build.PL
File metadata and controls
60 lines (58 loc) · 3.01 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
49
50
51
52
53
54
55
56
57
58
59
60
use 5.006;
use strict;
use warnings;
use Module::Build 0.36;
my $builder = Module::Build->new(
module_name => 'Plumage',
dist_abstract => 'Generate website making eagle-i data more accessible',
license => 'bsd',
dist_author => q{Anirvan Chatterjee <anirvan.chatterjee at ucsf dot edu>},
dist_version_from => 'lib/Plumage.pm',
build_requires => { 'Test::More' => 0 },
recommends => { 'KSx::Simple' => 0 },
requires => {
'CHI' => 0,
'Config::Tiny' => '2.14',
'Cwd' => 0,
'Exporter' => 0,
'File::Copy::Recursive' => '0.09',
'File::HomeDir' => '0.98',
'File::Remove' => '1.5',
'File::ShareDir' => '1.00',
'File::ShareDir::ProjectDistDir' => 0,
'File::Spec' => '3.33',
'File::Temp' => 0,
'Filesys::DiskUsage::Fast' => 0,
'FindBin' => 0,
'HTTP::Request::Common' => 0,
'JSON' => 0,
'LWP::Protocol::https' => 0,
'LWP::Simple' => 0,
'LWP::Simple::WithCache' => 0,
'LWP::UserAgent' => '6.02',
'LWP::UserAgent::Determined' => '1.06',
'List::MoreUtils' => '0.33',
'Log::Log4perl' => '1.33',
'Memoize' => 0,
'Module::Build' => '0.4',
'MooseX::ClassAttribute' => '0.27',
'OWL::Simple::Parser' => '1.01',
'Params::Validate' => '1',
'Regexp::Common' => 2010010201,
'Search::Sitemap' => '2.13',
'String::Approx' => '3.26',
'Template' => '2.22',
'Template::Stash::AutoEscaping' => '0.0301',
'Text::Elide' => 0,
'Tree::Simple' => '1.18',
'URI' => 0,
'URI::Escape' => 0,
'WWW::Sitemap::XML' => '2.02',
'XML::Simple' => '2.18',
'perl' => '5.012'
},
share_dir => 'share',
add_to_cleanup => ['Plumage-*'],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();