4f22ab8ccfe49b2f88bc78add444854030693e87
[catagits/Gitalist.git] / Makefile.PL
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;
5
6 name 'Gitalist';
7 all_from 'lib/Gitalist.pm';
8
9 requires 'Catalyst::Runtime' => '5.80003';
10 requires 'Catalyst::Plugin::ConfigLoader';
11 requires 'Catalyst::Plugin::Static::Simple';
12 requires 'Catalyst::Action::RenderView';
13 requires 'Catalyst::View::ContentNegotiation::XHTML';
14 requires 'Moose';
15 requires 'namespace::autoclean';
16 requires 'Config::General'; # This should reflect the config file format you've chosen
17                  # See Catalyst::Plugin::ConfigLoader for supported formats
18 catalyst;
19
20 install_script glob('script/*.pl');
21 auto_install;
22 WriteAll;