|
use 5.006;
WriteMakefile(
NAME => 'Assert::Refute' ,
AUTHOR => q{Konstantin S. Uvarin <khedin@gmail.com>} ,
VERSION_FROM => 'lib/Assert/Refute.pm' ,
ABSTRACT_FROM => 'lib/Assert/Refute.pm' ,
LICENSE => 'artistic_2' ,
PL_FILES => {},
MIN_PERL_VERSION => '5.006' ,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0' ,
'Scalar::Util' => 1.14,
$] >= 5.010 ? () : (
'parent' => 0,
),
},
BUILD_REQUIRES => {
'Test::More' => 0.87,
},
PREREQ_PM => {
},
dist => { COMPRESS => 'gzip -9f' , SUFFIX => 'gz' , },
clean => { FILES => 'Assert-Refute-*' },
);
|