Changed the dir structure so it looks a bit more distro-like.
[catagits/Gitalist.git] / Makefile.PL
CommitLineData
89de6a33 1#!/usr/bin/env perl
2# IMPORTANT: if you delete this file your app will not work as
3# expected. You have been warned.
4use inc::Module::Install;
5
6name 'Gitalist';
7all_from 'lib/Gitalist.pm';
8
9requires 'Catalyst::Runtime' => '5.80003';
10requires 'Catalyst::Plugin::ConfigLoader';
11requires 'Catalyst::Plugin::Static::Simple';
12requires 'Catalyst::Action::RenderView';
13requires 'parent';
14requires 'Config::General'; # This should reflect the config file format you've chosen
15 # See Catalyst::Plugin::ConfigLoader for supported formats
16catalyst;
17
18install_script glob('script/*.pl');
19auto_install;
20WriteAll;