]>
Commit | Line | Data |
---|---|---|
832c594d MG |
1 | use 5.014000; |
2 | use ExtUtils::MakeMaker; | |
3 | ||
4 | WriteMakefile( | |
5 | NAME => 'App::RemoteGnokii', | |
6 | VERSION_FROM => 'lib/App/RemoteGnokii.pm', | |
7 | ABSTRACT_FROM => 'lib/App/RemoteGnokii.pm', | |
8 | AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>', | |
9 | EXE_FILES => [qw/rg-action rg-psgi rg-smsd/], | |
10 | MIN_PERL_VERSION => '5.14.0', | |
11 | LICENSE => 'gpl', | |
12 | SIGN => 1, | |
13 | PREREQ_PM => { | |
14 | qw/File::Copy 0 | |
15 | File::Temp 0 | |
16 | ||
17 | Config::Any 0 | |
18 | File::Slurp 0 | |
19 | File::Which 0 | |
20 | Plack::Request 0/, | |
21 | }, | |
22 | META_MERGE => { | |
23 | dynamic_config => 0, | |
24 | resources => { | |
25 | repository => 'https://git.ieval.ro/?p=app-remotegnokii.git', | |
26 | } | |
27 | } | |
28 | ); |