Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / auto / share / dist / Catalyst-Devel / Makefile.PL.tt
CommitLineData
3fea05b9 1[% startperl %]
2# IMPORTANT: if you delete this file your app will not work as
3# expected. You have been warned.
4use inc::Module::Install;
5
6name '[% dir %]';
7all_from '[% path %]';
8
9requires 'Catalyst::Runtime' => '[% catalyst_version %]';
10requires 'Catalyst::Plugin::ConfigLoader';
11requires 'Catalyst::Plugin::Static::Simple';
12requires 'Catalyst::Action::RenderView';
13requires 'Moose';
14requires 'namespace::autoclean';
15requires 'Config::General'; # This should reflect the config file format you've chosen
16 # See Catalyst::Plugin::ConfigLoader for supported formats
17test_requires 'Test::More' => '0.88';
18catalyst;
19
20install_script glob('script/*.pl');
21auto_install;
22WriteAll;