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, 9 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

# Content
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 requires 'Catalyst::Plugin::Session';
9 requires 'Catalyst::Plugin::Session::State::Cookie';
10 requires 'Catalyst::Plugin::Session::Store::File';
11 requires 'Catalyst::Action::RenderView';
12 requires 'Catalyst::Controller::FormBuilder';
13 requires 'Path::Class';
14 requires 'Pod::POM';
15 requires 'JSON::RPC::Client';
16 requires 'YAML'; # This should reflect the config file format you've chosen
17 # See Catalyst::Plugin::ConfigLoader for supported formats
18 catalyst;
19 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
26 install_script glob('script/*.pl');
27 auto_install;
28 WriteAll;