Slightly improve gruntmaster-problem and add it to EXE_FILES
[plack-app-gruntmaster.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'Gruntmaster::Page',
6 VERSION_FROM => 'lib/Gruntmaster/Page.pm',
7 EXE_FILES => [ qw/gruntmaster-genpage gruntmaster-genallpages gruntmaster-problem/ ],
8 ABSTRACT_FROM => 'lib/Gruntmaster/Page.pm',
9 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Fcntl 0
15 File::Basename 0
16 IO::File 0
17 POSIX 0
18
19 File::Slurp 0
20 HTML::Template::Compiled 0
21 IO::Compress::Gzip 0
22 YAML::Any 0/,
23 },
24 META_MERGE => {
25 dynamic_config => 0,
26 }
27 );
This page took 0.02204 seconds and 5 git commands to generate.