move perl 5.41.1 above 5.40
[andk-cpan-tools.git] / CPAN-Blame / Makefile.PL
blobd7c8af2279ba7ab42313c52a505671492a4a5722
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 lib '.';
5 use inc::Module::Install;
7 name 'CPAN-Blame';
8 all_from 'lib/CPAN/Blame.pm';
10 requires 'Catalyst::Runtime' => '5.80013';
11 requires 'Catalyst::Plugin::ConfigLoader';
12 requires 'Catalyst::Plugin::Static::Simple';
13 requires 'Catalyst::Action::RenderView';
14 requires 'parent';
15 requires 'Config::General'; # This should reflect the config file format you've chosen
16 # See Catalyst::Plugin::ConfigLoader for supported formats
17 catalyst;
19 install_script glob('script/*.pl');
20 #### auto_install;
21 #### WriteAll;