-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
88 lines (77 loc) · 3.4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# 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 $@;
}
use strict;
use warnings;
our $VERSION = 0.002_000;
name 'ShinyCMS';
all_from 'lib/ShinyCMS.pm';
# WBRASWELL 20210102 2021.002: override "all_from" command above
name 'CloudForFree';
author 'Will Braswell <[email protected]>';
# DEV NOTE 20210102 2021.002, CORRELATION #cff07: CPAN dependencies copied manually to cpanfile
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',
# WBRASWELL 20210102 2021.001
# Auth0
'Doorman' => '0.10', # for Plack::Middleware::DoormanAuth0
'Lingua::EN::NameParse' => '1.36',
# AJAX
'CGI::Ajax' => '0.707',
# terminal emulation
# 'IO::Pty::Easy' => '0.10',
'String::Random' => '0.29',
'Term::VT102::Boundless' => '0.04',
'Term::VT102::Incremental' => '0.05',
# temp build files
'File::Temp' => '0.2304',
# A2::FM file manager
'Archive::Any' => '0.03',
'CGI::Cookie' => '1.20',
'File::NCopy' => '0.32',
'File::Remove' => '0.20',
# 'Apache2::FileManager' => '0.30',
# WBRASWELL 20180618 2018.169
'DBD::mysql' => '4.046',
);
recommends (
'Template::Plugin::Markdown' => '0',
'FCGI' => '0',
'FCGI::ProcManager' => '0',
);
catalyst;
install_script glob( 'script/*.pl' );
auto_install;
WriteAll;