Bump version and update Changes
[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 Email::Simple 2.206/,
17 },
18 META_MERGE => {
19 dynamic_config => 0,
20 resources => {
21 repository => 'https://git.ieval.ro/?p=app-lastmsg.git'
22 }
23 }
24 );
This page took 0.022076 seconds and 4 git commands to generate.