The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use 5.006;
use strict;
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, # set_prototype
$] >= 5.010 ? () : (
'parent' => 0,
),
},
BUILD_REQUIRES => {
'Test::More' => 0.87,
},
PREREQ_PM => {
#'ABC' => '1.6',
#'Foo::Bar::Module' => '5.0401',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Assert-Refute-*' },
);