1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
use 5.006;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Sub::Override',
VERSION_FROM => 'lib/Sub/Override.pm', # finds $VERSION
PREREQ_PM => {
'Scalar::Util' => '1.11',
'Test::More' => .47,
'Test::Fatal' => '0.010',
},
( $] >= 5.005
? ( ABSTRACT_FROM => 'lib/Sub/Override.pm',
AUTHOR => 'Curtis Poe <ovid@cpan.org>'
)
: ()
),
META_MERGE => {
resources => {
repository => 'https://github.com/Ovid/sub-override',
},
},
);
# reverse the email name to get my email address
|