added example application
[catagits/CatalystX-Declare.git] / examples / MyApp-Web / Makefile.PL
1 #!/usr/bin/env perl
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 'MyApp-Web';
7 all_from 'lib/MyApp/Web.pm';
8
9 requires 'CatalystX::Declare' => '0.001';
10 requires 'Catalyst::Runtime' => '5.80007';
11 requires 'Catalyst::Plugin::ConfigLoader';
12 requires 'Catalyst::Plugin::Static::Simple';
13 requires 'Catalyst::Action::RenderView';
14 requires 'parent';
15 requires 'Config::General'; # This should reflect the config file format you've chosen
16                  # See Catalyst::Plugin::ConfigLoader for supported formats
17 catalyst;
18
19 install_script glob('script/*.pl');
20 auto_install;
21 WriteAll;