ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/wwwroot/Makefile.PL
Revision: 1.2
Committed: Wed Jul 25 01:18:17 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +13 -1 lines
Log Message:
updated and added PAR support

File Contents

# User Rev Content
1 pippijn 1.1 use inc::Module::Install;
2    
3     name 'Ermyth-Web';
4     all_from 'lib/Ermyth/Web.pm';
5    
6     requires 'Catalyst' => '5.7007';
7     requires 'Catalyst::Plugin::ConfigLoader';
8 pippijn 1.2 requires 'Catalyst::Plugin::Session';
9     requires 'Catalyst::Plugin::Session::State::Cookie';
10     requires 'Catalyst::Plugin::Session::Store::File';
11 pippijn 1.1 requires 'Catalyst::Action::RenderView';
12 pippijn 1.2 requires 'Catalyst::Controller::FormBuilder';
13     requires 'Path::Class';
14     requires 'Pod::POM';
15     requires 'JSON::RPC::Client';
16 pippijn 1.1 requires 'YAML'; # This should reflect the config file format you've chosen
17     # See Catalyst::Plugin::ConfigLoader for supported formats
18     catalyst;
19 pippijn 1.2 catalyst_par_core; # Include modules that are also included
20     # in the standard Perl distribution,
21     # this is optional but highly suggested
22    
23     catalyst_par; # Generate a PAR as soon as the blib
24     # directory is ready
25 pippijn 1.1
26     install_script glob('script/*.pl');
27     auto_install;
28     WriteAll;