Prevent warnings on systems without $ENV{HOME} / $ENV{USER}
[app-lastmsg.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 use 5.014000;
3
4 WriteMakefile(
5 NAME => 'App::Lastmsg',
6 VERSION_FROM => 'lib/App/Lastmsg.pm',
7 ABSTRACT_FROM => 'lib/App/Lastmsg.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 EXE_FILES => [ 'lastmsg' ],
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 1,
12 PREREQ_PM => {
13 qw/Config::Auto 0
14 Date::Parse 0
15 Email::Folder 0/,
16 },
17 META_MERGE => {
18 dynamic_config => 0,
19 resources => {
20 repository => 'https://git.ieval.ro/?p=app-lastmsg.git'
21 }
22 }
23 );
This page took 0.02261 seconds and 4 git commands to generate.