Adding PidFile implementation and making Daemonize use that
[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;
b3cd9b56 12requires 'MooseX::Getopt' => 0;
13requires 'Moose' => 0.20;
fff1338e 14
15no_index 'directory' => 'examples';
16
17auto_install;
18WriteAll;