summary refs log tree commit diff
path: root/Makefile.PL
blob: d47508453984e5b1c77e4be8b73b434618f0f623 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# IMPORTANT: if you delete this file your app will not work as
# expected.  you have been warned
use inc::Module::Install;

name 'intentioncloud';
all_from 'lib/intentioncloud.pm';

requires 'Catalyst::Runtime' => '5.71000';
requires 'Catalyst::Plugin::ConfigLoader';
requires 'Catalyst::Plugin::Static::Simple';
requires 'Catalyst::Action::RenderView';
requires 'parent';
requires 'Config::General'; # This should reflect the config file format you've chosen
                 # See Catalyst::Plugin::ConfigLoader for supported formats
catalyst;
requires 'WebService::Google::Suggest';
requires 'HTML::TagCloud';

install_script glob('script/*.pl');
auto_install;
WriteAll;