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

sub MY::top_targets {
package MY; # so that "SUPER" works right
my $inherited = shift->SUPER::top_targets(@_);
$inherited =~ s/(man|html)ifypods//g;
$inherited;
}
WriteMakefile(
'SKIP' => [qw( test makeaperl manifypods htmlifypods xs_o static)],
'NAME' => 'Bio::MAGE::DesignElement',
);