hydra/src/Makefile.PL

22 lines
614 B
Makefile
Raw Normal View History

# IMPORTANT: if you delete this file your app will not work as
# expected. you have been warned
2021-08-19 20:36:43 +00:00
use strict;
use warnings;
use inc::Module::Install;
2008-11-25 11:01:42 +00:00
name 'Hydra';
all_from 'lib/Hydra.pm';
requires 'Catalyst::Runtime' => '5.7015';
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;