blob: 22ce88787c68639b51e324f3feba3bb1eff2e5b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::GlobalPOPs::MediaServicesAPI',
AUTHOR => 'Ivan Kohler <ivan-net-globalpops@freeside.biz>',
VERSION_FROM => 'lib/Net/GlobalPOPs/MediaServicesAPI.pm',
ABSTRACT_FROM => 'lib/Net/GlobalPOPs/MediaServicesAPI.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'XML::Simple' => 0,
'XML::Writer' => 0,
'Net::HTTPS::Any' => 0.10
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-GlobalPOPs-MediaServicesAPI-*' },
);
|