Move the compile and execute logic to standalone scripts
[gruntmaster-daemon.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'Gruntmaster::Daemon',
6 VERSION_FROM => 'lib/Gruntmaster/Daemon.pm',
7 EXE_FILES => [ 'gruntmasterd', 'gruntmaster-compile', 'gruntmaster-exec' ],
8 ABSTRACT_FROM => 'lib/Gruntmaster/Daemon.pm',
9 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 BUILD_REQUIRES => {
13 qw/Cwd 0
14 File::Copy 0
15 File::Copy::Recursive 0
16 File::Path 0
17 File::Temp 0
18 List::Util 0
19 Log::Log4perl 0
20 Test::More 0
21 YAML::Any 0/,
22 },
23 SIGN => 1,
24 PREREQ_PM => {
25 qw/Exporter 0
26 Fcntl 0
27 File::Basename 0
28 File::Copy 0
29 File::Spec::Functions 0
30 IO::File 0
31 IPC::Open3 0
32 List::Util 0
33 POSIX 0
34 Time::HiRes 0
35
36 BSD::Resource 0
37 File::Slurp 0
38 IPC::Signal 0
39 Linux::Inotify2 0
40 List::MoreUtils 0
41 Log::Log4perl 0
42 Try::Tiny 0
43 YAML::Any 0/,
44 },
45 META_MERGE => {
46 dynamic_config => 0,
47 }
48 );
This page took 0.02408 seconds and 5 git commands to generate.