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