Use File::Share(Dir) for templates
[app-edwardng.git] / Makefile.PL
CommitLineData
2f9e679a
MG
1use 5.014000;
2use ExtUtils::MakeMaker;
8dd68edb
MG
3use File::ShareDir::Install;
4
5install_share 'share';
2f9e679a
MG
6
7WriteMakefile(
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
8dd68edb 17 File::Share 0
2f9e679a
MG
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
8dd68edb
MG
25 Try::Tiny 0/,
26 },
27 BUILD_REQUIRES => {
28 qw/ExtUtils::MakeMaker 0
29 File::ShareDir::Install 0/,
2f9e679a
MG
30 },
31 META_MERGE => {
32 dynamic_config => 0,
33 resources => {
34 repository => 'https://git.ieval.ro/?p=app-edwardng.git',
35 }
36 }
37);
8dd68edb
MG
38
39package MY;
40use File::ShareDir::Install qw/postamble/;
This page took 0.012322 seconds and 4 git commands to generate.