Add edwardng to EXE_FILES
[app-edwardng.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3 use File::ShareDir::Install;
4
5 install_share 'share';
6
7 WriteMakefile(
8 NAME => 'App::EdwardNG',
9 VERSION_FROM => 'lib/App/EdwardNG.pm',
10 ABSTRACT_FROM => 'lib/App/EdwardNG.pm',
11 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
12 EXE_FILES => ['edwardng'],
13 MIN_PERL_VERSION => '5.14.0',
14 LICENSE => 'perl',
15 SIGN => 1,
16 PREREQ_PM => {
17 qw/Email::Sender::Simple 0
18 File::Share 0
19 File::Slurp 0
20 Getopt::Long 0
21 MIME::Entity 5.419
22 MIME::Parser 5.419
23 Mail::GnuPG 0
24 PerlX::Maybe 0
25 Template 0
26 Try::Tiny 0/,
27 },
28 BUILD_REQUIRES => {
29 qw/ExtUtils::MakeMaker 0
30 File::ShareDir::Install 0/,
31 },
32 META_MERGE => {
33 dynamic_config => 0,
34 resources => {
35 repository => 'https://git.ieval.ro/?p=app-edwardng.git',
36 }
37 }
38 );
39
40 package MY;
41 use File::ShareDir::Install qw/postamble/;
This page took 0.021279 seconds and 4 git commands to generate.