]>
Commit | Line | Data |
---|---|---|
362a19d8 MG |
1 | use 5.014000; |
2 | use ExtUtils::MakeMaker; | |
3 | ||
4 | WriteMakefile( | |
5 | NAME => 'WebService::Scaleway', | |
6 | VERSION_FROM => 'lib/WebService/Scaleway.pm', | |
7 | ABSTRACT_FROM => 'lib/WebService/Scaleway.pm', | |
8 | AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>', | |
9 | MIN_PERL_VERSION => '5.14.0', | |
10 | LICENSE => 'perl', | |
11 | SIGN => 1, | |
12 | PREREQ_PM => { | |
13 | qw/JSON::MaybeXS 0/, | |
14 | }, | |
15 | META_MERGE => { | |
16 | dynamic_config => 0, | |
17 | resources => { | |
18 | repository => 'https://git.ieval.ro/?p=webservice-scaleway.git', | |
19 | } | |
20 | } | |
21 | ); |