Initial commit
[gruntmaster-gui.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'Gruntmaster::GUI',
6 VERSION_FROM => 'lib/Gruntmaster/GUI.pm',
7 ABSTRACT_FROM => 'lib/Gruntmaster/GUI.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 EXE_FILES => [qw/gruntmaster-gui/],
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Gruntmaster::Data 0
15 Sub::Name 0
16 Try::Tiny 0
17 Wx 0
18 Wx::Event 0/,
19 },
20 META_MERGE => {
21 dynamic_config => 0,
22 resources => {
23 repository => 'https://git.ieval.ro/?p=gruntmaster-gui.git',
24 }
25 }
26 );
This page took 0.020583 seconds and 4 git commands to generate.