-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuild.PL
More file actions
47 lines (39 loc) · 1.38 KB
/
Build.PL
File metadata and controls
47 lines (39 loc) · 1.38 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
use strict;
use warnings;
use Module::CPANTS::MyBuild;
use File::Spec::Functions qw(catdir catfile);
use File::Find;
my $build = Module::CPANTS::MyBuild->new(
module_name => 'Module::CPANTS::Site',
license => 'perl',
build_requires => {
'File::HomeDir' => '0.66',
},
requires => {
'Catalyst' => '5.8900',
'DBIx::Class' => '0.07000',
'DBD::SQLite' => '1.14',
'Module::CPANTS::Analyse' => '0.75',
'Module::CPANTS::ProcessCPAN' => '0.70',
'Catalyst::Model::DBIC::Schema' => '0.16',
'Catalyst::View::TT' => '0.23',
'Catalyst::View::JSON' => '0.23',
'Catalyst::Plugin::Static::Simple' => '0.14',
'version' => '0.73',
'Template::Plugin::Number::Format' => '1.02',
'Catalyst::Plugin::Session::State::Cookie' => '0',
'Catalyst::Plugin::Session::Store::Memcached' => '0',
'Template::Stash::AutoEscape' => '0',
},
meta_merge => {
resources => {
repository => 'http://github.com/domm/CPANTS/tree',
},
keywords => [
'CPANTS','kwalitee',
],
},
create_makefile_pl => 'traditional',
);
$build->notes('uid',$<);
$build->create_build_script;