Add built dists to MANIFEST.SKIP
[catagits/Catalyst-Devel.git] / share / Makefile.PL.tt
CommitLineData
239b5fc0 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;
01aa309c 5use Module::Install::Catalyst; # Complain loudly if you don't have
f203ac2a 6 # Catalyst::Devel installed or haven't said
7 # 'make dist' to create a standalone tarball.
239b5fc0 8
9name '[% dir %]';
10all_from '[% path %]';
11
12requires 'Catalyst::Runtime' => '[% catalyst_version %]';
13requires 'Catalyst::Plugin::ConfigLoader';
14requires 'Catalyst::Plugin::Static::Simple';
15requires 'Catalyst::Action::RenderView';
8662edf6 16requires 'Moose';
17requires 'namespace::autoclean';
239b5fc0 18requires 'Config::General'; # This should reflect the config file format you've chosen
19 # See Catalyst::Plugin::ConfigLoader for supported formats
0c34c8b8 20test_requires 'Test::More' => '0.88';
239b5fc0 21catalyst;
22
23install_script glob('script/*.pl');
24auto_install;
25WriteAll;