1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
use 5.008;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Scalar::Type',
META_MERGE => {
license => 'open_source',
resources => {
repository => 'https://github.com/DrHyde/perl-modules-Scalar-Type',
bugtracker => 'https://github.com/DrHyde/perl-modules-Scalar-Type/issues'
},
},
VERSION_FROM => 'lib/Scalar/Type.pm',
OBJECT => 'Type$(OBJ_EXT)',
PREREQ_PM => {
'Scalar::Util' => 0,
'Devel::Peek' => 0,
'Capture::Tiny' => 0,
'Carp' => 0,
'if' => 0,
'Test2::API' => 1.302198,
'Test2::V0' => 0.000159,
},
);
|