]> ruin.nu Git - ndwebbie.git/blob - Makefile.PL
Use new race infrastructure for members stats
[ndwebbie.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name 'NDWeb';
4 all_from 'lib/NDWeb.pm';
5
6 requires 'Catalyst::Runtime' => '5.7013';
7 requires 'Catalyst::Plugin::ConfigLoader';
8 requires 'Catalyst::Plugin::Static::Simple';
9 requires 'Catalyst::Action::RenderView';
10 requires 'parent';
11 requires 'YAML'; # This should reflect the config file format you've chosen
12                  # See Catalyst::Plugin::ConfigLoader for supported formats
13 catalyst;
14
15 install_script glob('script/*.pl');
16 auto_install;
17 WriteAll;