removed signal handling, cause it was not very useful, and then made WithPidFile...
[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
b3cd9b56 11requires 'MooseX::Getopt' => 0;
12requires 'Moose' => 0.20;
fff1338e 13
14no_index 'directory' => 'examples';
15
16auto_install;
17WriteAll;