Medium sized Internalization made by flattener against megalog-2018-03-11
[andk-cpan-tools.git] / CPAN-Blame / Makefile.PL
blob44ccc685d39da7d2abae9ceac4a69b99bba83e4e
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;
6 name 'CPAN-Blame';
7 all_from 'lib/CPAN/Blame.pm';
9 requires 'Catalyst::Runtime' => '5.80013';
10 requires 'Catalyst::Plugin::ConfigLoader';
11 requires 'Catalyst::Plugin::Static::Simple';
12 requires 'Catalyst::Action::RenderView';
13 requires 'parent';
14 requires 'Config::General'; # This should reflect the config file format you've chosen
15 # See Catalyst::Plugin::ConfigLoader for supported formats
16 catalyst;
18 install_script glob('script/*.pl');
19 auto_install;
20 WriteAll;