diff options
| author | franck cuny <franck.cuny@rtgi.fr> | 2009-03-17 21:39:41 +0100 |
|---|---|---|
| committer | franck cuny <franck.cuny@rtgi.fr> | 2009-03-17 21:39:41 +0100 |
| commit | 6d0bd92e26a6da6af2adcbb9e5caf11c50fc5701 (patch) | |
| tree | 8bb4df25a0c7a54996f67acf1e33d430d6689d5b /Makefile.PL | |
| download | intention-cloud-6d0bd92e26a6da6af2adcbb9e5caf11c50fc5701.tar.gz | |
initial commit
Diffstat (limited to 'Makefile.PL')
| -rw-r--r-- | Makefile.PL | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..d0ab008 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,19 @@ +# 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; + +install_script glob('script/*.pl'); +auto_install; +WriteAll; |
