use inc::Module::Install; name 'FileFormats'; all_from 'lib/FileFormats.pm'; requires 'Catalyst::Runtime' => '5.7015'; requires 'Catalyst::Plugin::ConfigLoader'; requires 'Catalyst::Plugin::Static::Simple'; requires 'Catalyst::Action::RenderView'; requires 'YAML'; # This should reflect the config file format you've chosen # See Catalyst::Plugin::ConfigLoader for supported formats requires 'Catalyst::Plugin::Nested::Params'; requires 'Catalyst::Model::DBIC::Schema'; requires 'Catalyst::View::TT'; catalyst; install_script glob('script/*.pl'); auto_install; WriteAll;