-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
56 lines (49 loc) · 2.07 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# IMPORTANT: if you delete this file your app will not work as expected.
use inc::Module::Install;
BEGIN {
eval "use Module::Install::Catalyst";
die "*** Please install Module::Install::Catalyst and run perl Makefile.PL again\n" if $@;
}
name 'ShinyCMS';
all_from 'lib/ShinyCMS.pm';
requires 'Catalyst::Runtime' => '5.80004';
requires 'Catalyst::Plugin::ConfigLoader';
requires 'Catalyst::Plugin::Static::Simple';
requires 'Catalyst::Action::RenderView';
requires 'parent';
requires 'Config::General';
requires (
'Catalyst::Plugin::Authentication' => '0',
'Catalyst::Plugin::Session' => '0',
'Catalyst::Plugin::Session::Store::DBIC' => '0',
'Catalyst::Plugin::Session::State::Cookie' => '0',
'Catalyst::Authentication::Realm::SimpleDB' => '0',
'Catalyst::View::TT' => '0',
'Catalyst::View::Email' => '0',
'Catalyst::TraitFor::Request::BrowserDetect' => '0',
'CatalystX::RoleApplicator' => '0',
'DBIx::Class::EncodedColumn' => '0',
'DBIx::Class::Schema::Loader' => '0',
'DBIx::Class::TimeStamp' => '0',
'Method::Signatures::Simple' => '0',
'MooseX::NonMoose' => '0',
'MooseX::MarkAsMethods' => '0',
'XML::Feed' => '0',
'Captcha::reCAPTCHA' => '0',
'HTML::Restrict' => '0',
'Email::Sender' => '0.102360', # gets rid of -alias/-excludes warnings
'Email::Valid' => '0',
'Net::Domain::TLD' => '0',
'Text::CSV::Simple' => '0',
'File::Pid' => '0',
'HTML::TreeBuilder' => '0',
);
recommends (
'Template::Plugin::Markdown' => '0',
'FCGI' => '0',
'FCGI::ProcManager' => '0',
);
catalyst;
install_script glob( 'script/*.pl' );
auto_install;
WriteAll;