Skip to content

Commit

Permalink
Much better Makefile.PL
Browse files Browse the repository at this point in the history
  • Loading branch information
chorny authored and lukec committed Oct 30, 2009
1 parent 2bdff4c commit 60fb845
Showing 1 changed file with 36 additions and 10 deletions.
46 changes: 36 additions & 10 deletions Makefile.PL
@@ -1,23 +1,49 @@
require 5.006;
use ExtUtils::MakeMaker;

WriteMakefile(
WriteMakefile1(
MIN_PERL_VERSION => '5.006',
META_MERGE => {
resources => {
repository => 'http://github.com/lukec/net-textmessage-canada',
},
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
'NAME' => 'Net::TextMessage::Canada',
'VERSION_FROM' => 'lib/Net/TextMessage/Canada.pm',
'ABSTRACT_FROM' => 'lib/Net/TextMessage/Canada.pm',
'AUTHOR' => 'Luke Closs <cpan@5thplane.com>',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE' => 'perl')
: ()),
'LICENSE' => 'perl'
'PREREQ_PM' => {
'Moose' => '0.89',
'Test::More' => 0,
},
'META_MERGE' => {
'resources' => {
'repository' => 'http:/github.com/lukec/net-textmessage-canada'
}
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-Parliament-* cache/*' },
);

sub WriteMakefile1 { #Written by Alexandr Ciornii, version 0.20. Added by eumm-upgrade.
my %params=@_;
my $eumm_version=$ExtUtils::MakeMaker::VERSION;
$eumm_version=eval $eumm_version;
die "EXTRA_META is deprecated" if exists $params{EXTRA_META};
die "License not specified" if not exists $params{LICENSE};
if ($params{BUILD_REQUIRES}) { #and $eumm_version < 6.5503
#Should be modified in future when EUMM will
#correctly support BUILD_REQUIRES.
#EUMM 6.5502 has problems with BUILD_REQUIRES
$params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{BUILD_REQUIRES}} };
delete $params{BUILD_REQUIRES};
}
delete $params{CONFIGURE_REQUIRES} if $eumm_version < 6.52;
delete $params{MIN_PERL_VERSION} if $eumm_version < 6.48;
delete $params{META_MERGE} if $eumm_version < 6.46;
delete $params{META_ADD} if $eumm_version < 6.46;
delete $params{LICENSE} if $eumm_version < 6.31;
delete $params{AUTHOR} if $] < 5.005;
delete $params{ABSTRACT_FROM} if $] < 5.005;
delete $params{BINARY_LOCATION} if $] < 5.005;

WriteMakefile(%params);
}

0 comments on commit 60fb845

Please sign in to comment.