Fix perlcritic test so it doesn't bomb if Perl::Critic isn't installed
[gitmo/MooseX-Daemonize.git] / Makefile.PL
CommitLineData
fff1338e 1# Load the Module::Install bundled in ./inc/
a4952679 2use inc::Module::Install;
fff1338e 3
4# Define metadata
5name 'MooseX-Daemonize';
6all_from 'lib/MooseX/Daemonize.pm';
7
8# Specific dependencies
b3cd9b56 9build_requires 'Test::More' => 0;
10
11requires 'Proc::Daemon' => 0;
12requires 'Carp' => 0;
13requires 'File::Pid' => 0;
14requires 'MooseX::Getopt' => 0;
15requires 'Moose' => 0.20;
fff1338e 16
17no_index 'directory' => 'examples';
18
19auto_install;
20WriteAll;