use
5.016;
my
%WriteMakefileArgs
= (
AUTHOR
=>
'Jan Henning Thorsen <jhthorsen@cpan.org>'
,
LICENSE
=>
'artistic_2'
,
NAME
=>
'App::sslmaker'
,
ABSTRACT_FROM
=>
'lib/App/sslmaker.pm'
,
VERSION_FROM
=>
'lib/App/sslmaker.pm'
,
EXE_FILES
=> [
qw(script/sslmaker)
],
TEST_REQUIRES
=> {
'Test::More'
=>
'1.30'
},
PREREQ_PM
=> {
'File::umask'
=>
'0.01'
,
'Getopt::App'
=>
'0.10'
,
'IO::Socket::IP'
=>
'0.38'
,
'Path::Tiny'
=>
'0.05'
},
META_MERGE
=> {
'dynamic_config'
=> 0,
'meta-spec'
=> {
version
=> 2},
'no_index'
=> {
directory
=> [
qw(examples t)
]},
'prereqs'
=> {
runtime
=> {
requires
=> {
perl
=>
'5.016'
}}},
'resources'
=> {
bugtracker
=> {
web
=>
"$GITHUB_URL/issues"
},
homepage
=>
$GITHUB_URL
,
repository
=> {
type
=>
'git'
,
url
=>
"$GITHUB_URL.git"
,
web
=>
$GITHUB_URL
},
},
'x_contributors'
=> [],
},
test
=> {
TESTS
=> (-e
'META.yml'
?
't/*.t'
:
't/*.t xt/*.t'
)},
);
unless
(
eval
{ ExtUtils::MakeMaker->VERSION(
'6.63_03'
) }) {
my
$test_requires
=
delete
$WriteMakefileArgs
{TEST_REQUIRES};
@{
$WriteMakefileArgs
{PREREQ_PM}}{
keys
%$test_requires
} =
values
%$test_requires
;
}
WriteMakefile(
%WriteMakefileArgs
);