CAD-Drawing-IO-Image
view release on metacpan or search on metacpan
use strict;
use warnings;
use Module::Build;
my $build_class = 'Module::Build';
my $custom_build = 'Module::Build::Live';
eval("require $custom_build;");
unless($@) {
warn "using custom build class: '$custom_build'\n";
$build_class = $custom_build;
}
my $builder = $build_class->new(
module_name => 'CAD::Drawing::IO::Image',
license => 'perl',
dist_version_from => 'lib/CAD/Drawing/IO/Image.pm',
requires => {
'Test::More' => 0,
'CAD::Drawing' => 0.26,
'Image::Magick' => 6.0,
},
add_to_cleanup => [ qw(CAD-Drawing-IO-Image-* META.yml)],
);
$builder->create_build_script();
( run in 1.442 second using v1.01-cache-2.11-cpan-39bf76dae61 )