-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
31 lines (30 loc) · 1.16 KB
/
Makefile.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
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Catalyst::TraitFor::Component::ConfigPerSite',
VERSION_FROM => 'lib/Catalyst/TraitFor/Component/ConfigPerSite.pm', # finds $VERSION
PREREQ_PM => {
Catalyst => 0,
Catalyst::Action::RenderView => 0,
Catalyst::Plugin::Static::Simple => 0,
Catalyst::Plugin::ConfigLoader => 0,
Catalyst::View::TT => 0,
Catalyst::Model::DBIC::Schema => 0,
Moose => 0,
Test::Pod => 0,
Test::Pod::Coverage => 0,
Test::HTML::Form => 0,
Config::General => 0,
DBIx::Class::TimeStamp => '0',
DateTime => 0,
}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(AUTHOR => 'Aaron Trevena <[email protected]>') : ()),
META_MERGE => {
resources => {
repository => 'https://github.com/hashbangperl/Catalyst-TraitFor-Component-ConfigPerSite',
},
},
($ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE' => 'perl', ) : ()),
);