convert to Distar
[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 lib '.';
5 use inc::Module::Install 1.02;
6 use Module::Install::Catalyst; # Complain loudly if you don't have
7                                # Catalyst::Devel installed or haven't said
8                                # 'make dist' to create a standalone tarball.
9
10 name '[% dir %]';
11 all_from '[% path %]';
12
13 requires 'Catalyst::Runtime' => '[% catalyst_version %]';
14 requires 'Catalyst::Plugin::ConfigLoader';
15 requires 'Catalyst::Plugin::Static::Simple';
16 requires 'Catalyst::Action::RenderView';
17 requires 'Moose';
18 requires 'namespace::autoclean';
19 requires 'Config::General'; # This should reflect the config file format you've chosen
20                  # See Catalyst::Plugin::ConfigLoader for supported formats
21 test_requires 'Test::More' => '0.88';
22 catalyst;
23
24 install_script glob('script/*.pl');
25 auto_install;
26 WriteAll;