typos fixing
[blog.pm.git] / Makefile.PL
blob200b83837a622a88949593ae612d292bd30bedef
1 use inc::Module::Install;
3 name 'Blog';
4 all_from 'lib/Blog.pm';
6 requires(
7     'YAML' => '',
9     'Catalyst'                                 => '5.7012',
10     'Catalyst::Action::RenderView'             => '',
11     'Catalyst::Model::RDBO'                    => '',
12     'Catalyst::View::TT'                       => '',
13     'Catalyst::Authentication::Store::Minimal' => '',
15     'Catalyst::Plugin::ConfigLoader'             => '',
16     'Catalyst::Plugin::Static::Simple'           => '',
17     'Catalyst::Plugin::Unicode'                  => '',
18     'Catalyst::Plugin::Session'                  => '',
19     'Catalyst::Plugin::Session::Store::FastMmap' => '',
20     'Catalyst::Plugin::Session::State::Cookie'   => '',
21     'Catalyst::Plugin::Authentication'           => '',
22     'Catalyst::Plugin::I18N'                     => '',
24     'FCGI'              => '',
25     'FCGI::ProcManager' => '',
27     'Time::Local' => '',
28     'Date::Calc'  => '',
29     'HTTP::Date'  => '',
32 catalyst;
34 install_script glob( 'script/*.pl' );
35 auto_install;
36 WriteAll;