Also mount /tmp as tmpfs in VM
[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 => 'AGPL_3',
12 BUILD_REQUIRES => {
13 qw/Cwd 0
14 File::Basename 0
15 File::Slurp 0
16 File::Temp 0
17 File::Which 0
18 Hash::Merge 0
19 List::Util 0
20 Log::Log4perl 0
21 Test::More 0
22 YAML::Tiny 0/,
23 },
24 SIGN => 1,
25 PREREQ_PM => {
26 qw/Exporter 0
27 File::Basename 0
28 File::Copy 0
29 File::Temp 0
30 List::Util 0
31 Sys::Hostname 0
32 POSIX 0
33 Time::HiRes 0
34 sigtrap 0
35
36 BSD::Resource 0
37 Expect::Simple 0
38 File::Slurp 0
39 Gruntmaster::Data 0
40 IPC::Signal 0
41 JSON 0
42 List::MoreUtils 0
43 Log::Log4perl 0
44 String::ShellQuote 0
45 Try::Tiny 0/
46 },
47 META_MERGE => {
48 dynamic_config => 0,
49 resources => {
50 repository => 'https://git.ieval.ro/?p=gruntmaster-daemon.git',
51 }
52 }
53 );
This page took 0.025051 seconds and 4 git commands to generate.