Add EXE_FILES to Makefile.PL
[gruntmaster-data.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'Gruntmaster::Data',
6 VERSION_FROM => 'lib/Gruntmaster/Data.pm',
7 ABSTRACT_FROM => 'lib/Gruntmaster/Data.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 EXE_FILES => [qw/gruntmaster-problem gruntmaster-contest gruntmaster-job/],
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Getopt::Long 0
15 POSIX 0
16
17 Date::Parse 0
18 File::Slurp 0
19 IO::Prompter 0
20 JSON 0
21 Redis 0
22 Sub::Name 0
23 Term::ANSIColor 0/,
24 },
25 BUILD_REQUIRES => {
26 qw/DBD::SQLite 0/,
27 }
28 META_MERGE => {
29 dynamic_config => 0,
30 resources => {
31 repository => 'https://git.ieval.ro/?p=gruntmaster-data.git',
32 }
33 }
34 );
This page took 0.020618 seconds and 4 git commands to generate.