Use File::Share(Dir) for templates
[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 MIN_PERL_VERSION => '5.14.0',
13 LICENSE => 'perl',
14 SIGN => 1,
15 PREREQ_PM => {
16 qw/Email::Sender::Simple 0
17 File::Share 0
18 File::Slurp 0
19 Getopt::Long 0
20 MIME::Entity 5.419
21 MIME::Parser 5.419
22 Mail::GnuPG 0
23 PerlX::Maybe 0
24 Template 0
25 Try::Tiny 0/,
26 },
27 BUILD_REQUIRES => {
28 qw/ExtUtils::MakeMaker 0
29 File::ShareDir::Install 0/,
30 },
31 META_MERGE => {
32 dynamic_config => 0,
33 resources => {
34 repository => 'https://git.ieval.ro/?p=app-edwardng.git',
35 }
36 }
37 );
38
39 package MY;
40 use File::ShareDir::Install qw/postamble/;
This page took 0.020565 seconds and 4 git commands to generate.