/[soft]/identity/CatDap/trunk/Makefile.PL
ViewVC logotype

Contents of /identity/CatDap/trunk/Makefile.PL

Parent Directory Parent Directory | Revision Log Revision Log


Revision 97 - (show annotations) (download)
Thu Nov 4 18:07:28 2010 UTC (13 years, 5 months ago) by misc
File MIME type: text/plain
File size: 1422 byte(s)
- add missing requires ( as found by deploying it on alamut )

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 use Module::Install::Catalyst; # Complain loudly if you don't have
6 # Catalyst::Devel installed or haven't said
7 # 'make dist' to create a standalone tarball.
8
9 name 'CatDap';
10 all_from 'lib/CatDap.pm';
11
12 requires 'Catalyst::Runtime' => '5.80022';
13 requires 'Catalyst::Plugin::ConfigLoader';
14 requires 'Catalyst::Plugin::Static::Simple';
15 requires 'Catalyst::Plugin::I18N';
16 requires 'Catalyst::Plugin::Authentication';
17 requires 'Catalyst::Plugin::Authentication::Store::LDAP';
18 requires 'Catalyst::Plugin::Authorization::Roles';
19 requires 'Catalyst::Plugin::Captcha';
20 requires 'Catalyst::Plugin::Session::Store::File';
21 requires 'Catalyst::Plugin::Session::State::Cookie';
22 requires 'Catalyst::Action::RenderView';
23 requires 'Catalyst::View::TT';
24 requires 'Catalyst::View::Email';
25 requires 'Catalyst::Model::LDAP::FromAuthentication';
26 requires 'Moose';
27 requires 'Crypt::CBC';
28 requires 'Email::Valid';
29 requires 'Data::UUID';
30 requires 'namespace::autoclean';
31 requires 'Config::General'; # This should reflect the config file format you've chosen
32 # See Catalyst::Plugin::ConfigLoader for supported formats
33 test_requires 'Test::More' => '0.88';
34 catalyst;
35
36 install_script glob('script/*.pl');
37 auto_install;
38 WriteAll;

  ViewVC Help
Powered by ViewVC 1.1.30