]>
Commit | Line | Data |
---|---|---|
f1171346 MG |
1 | use ExtUtils::MakeMaker; |
2 | ||
3 | WriteMakefile( | |
40af1ba2 MG |
4 | NAME => 'Mafia', |
5 | VERSION_FROM => 'lib/Mafia.pm', | |
f1171346 MG |
6 | ABSTRACT_FROM => 'lib/Mafia.pm', |
7 | AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>', | |
8 | MIN_PERL_VERSION => '5.14.0', | |
9 | LICENSE => 'perl', | |
40af1ba2 MG |
10 | PREREQ_PM => { |
11 | Storable => 0, | |
f1171346 MG |
12 | }, |
13 | BUILD_REQUIRES => { | |
40af1ba2 MG |
14 | File::Basename => 0, |
15 | File::Slurp => 0, | |
f1171346 MG |
16 | }, |
17 | META_ADD => { | |
40af1ba2 MG |
18 | resources => { |
19 | repository => { | |
20 | url => 'http://git.ieval.ro/git/mafia.git', | |
21 | web => 'http://git.ieval.ro/?p=mafia.git', | |
22 | type => 'git', | |
23 | } | |
f1171346 | 24 | } |
f1171346 MG |
25 | } |
26 | ); |