Skip to content

Commit

Permalink
upgrade Makefile.PL
Browse files Browse the repository at this point in the history
  • Loading branch information
chorny committed Apr 1, 2012
1 parent b2e2dec commit f5c0461
Showing 1 changed file with 37 additions and 7 deletions.
44 changes: 37 additions & 7 deletions Makefile.PL
Expand Up @@ -18,10 +18,21 @@ my $is_msvc_compiler = ($Config{cc} =~ /cl/);
my $build_callback = $is_64bit_build ? 0 : 1;

use ExtUtils::MakeMaker;
WriteMakefile(
WriteMakefile1(
LICENSE => 'perl',
META_MERGE => {
resources => {
repository => 'https://github.com/cosimo/perl5-win32-api',
},
keywords => ['win32','api','dll','libraries'],
},
BUILD_REQUIRES => {
'Test::More' => 0,
},

'NAME' => 'Win32::API',

'AUTHOR' => 'Aldo Calpini <dada@perl.it>, Cosimo Streppone <cosimo@cpan.org>',
'AUTHOR' => ['Aldo Calpini <dada@perl.it>', 'Cosimo Streppone <cosimo@cpan.org>'],
'ABSTRACT' => 'Perl Win32 API Import Facility',

'PM' => {
Expand All @@ -47,11 +58,6 @@ WriteMakefile(
# One day, I'd like to restore the dynamic API_test.dll
#'clean' => {FILES => 'API_test.dll API_test_dll/Release/*'},

(
eval "$ExtUtils::MakeMaker::VERSION" >= 6.10_03
? ( 'NO_META' => 1 )
: ()
),
(
$is_64bit_build
? ( $is_msvc_compiler
Expand Down Expand Up @@ -97,3 +103,27 @@ EOM1
EOM
}

sub WriteMakefile1 { #Written by Alexandr Ciornii, version 0.21. 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) {
#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 f5c0461

Please sign in to comment.