Net-DynDNS-GoDaddy
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
NAME => 'Net::DynDNS::GoDaddy',
AUTHOR => q{Steve Bertrand <steveb@cpan.org>},
VERSION_FROM => 'lib/Net/DynDNS/GoDaddy.pm',
ABSTRACT_FROM => 'lib/Net/DynDNS/GoDaddy.pm',
EXE_FILES => [qw(bin/update-ip)],
LICENSE => 'artistic_2',
MIN_PERL_VERSION => '5.006',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/stevieb9/net-dyndns-godaddy.git',
web => 'https://github.com/stevieb9/net-dyndns-godaddy',
},
bugtracker => {
web => 'https://github.com/stevieb9/net-dyndns-godaddy/issues',
},
},
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
TEST_REQUIRES => {
'Hook::Output::Tiny' => 0,
'Mock::Sub' => '0',
'Test::More' => '0',
},
PREREQ_PM => {
'Addr::MyIP' => 0,
'File::HomeDir' => 0,
'HTTP::Tiny' => 0,
'JSON' => 0,
'IO::Socket::SSL' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-DynDNS-GoDaddy-*' },
);
# Compatibility with old versions of ExtUtils::MakeMaker
unless (eval { ExtUtils::MakeMaker->VERSION('6.64'); 1 }) {
my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES} || {};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires;
}
unless (eval { ExtUtils::MakeMaker->VERSION('6.55_03'); 1 }) {
my $build_requires = delete $WriteMakefileArgs{BUILD_REQUIRES} || {};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$build_requires} = values %$build_requires;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION('6.52'); 1 };
delete $WriteMakefileArgs{MIN_PERL_VERSION}
unless eval { ExtUtils::MakeMaker->VERSION('6.48'); 1 };
delete $WriteMakefileArgs{LICENSE}
unless eval { ExtUtils::MakeMaker->VERSION('6.31'); 1 };
WriteMakefile(%WriteMakefileArgs);
( run in 3.685 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )