]>
Commit | Line | Data |
---|---|---|
82af6c12 MG |
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 | MIN_PERL_VERSION => '5.14.0', | |
10 | LICENSE => 1, | |
11 | PREREQ_PM => { | |
12 | qw/Config::Auto 0 | |
13 | Date::Parse 0 | |
14 | Email::Folder 0/, | |
15 | }, | |
16 | META_MERGE => { | |
17 | dynamic_config => 0, | |
18 | resources => { | |
19 | repository => 'https://git.ieval.ro/?p=app-lastmsg.git' | |
20 | } | |
21 | } | |
22 | ); |