加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile.PL 2.93 KB
一键复制 编辑 原始数据 按行查看 历史
# Note: this file was auto-generated by Module::Build::Compat version 0.32
use ExtUtils::MakeMaker;
WriteMakefile1(
LICENSE => 'unrestricted',
META_MERGE => {
resources => {
license => [ 'http://hop.perl.plover.com/Examples/LICENSE.txt' ],
homepage => 'http://hop.perl.plover.com/',
bugtracker => {
web => 'http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HOP-Parser',
mailto => 'xav@cpan.org',
},
repository => {
url => 'git://github.com/maspalio/hop.git',
web => 'http://github.com/maspalio/hop',
type => 'git',
},
x_MailingList => 'http://hop.perl.plover.com/#mlist', # hop-discuss-subscribe@plover.com
},
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Test::Exception' => 0,
},
'INSTALLDIRS' => 'site',
'NAME' => 'HOP::Parser',
'ABSTRACT' => '"Higher Order Perl" Parser',
'AUTHOR' => [
'Mark Jason Dominus <mjd@plover.com>',
'Curtis "Ovid" Poe <ovid@cpan.org>',
'David E. Wheeler <david@justatheory.com>',
'Xavier Caron <xav@cpan.org>',
],
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/HOP/Parser.pm',
'PREREQ_PM' => {
'HOP::Stream' => '0.03',
'HOP::Lexer' => '0.032',
'Sub::Uplevel' => 0,
}
)
;
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);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化