The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package App::cpm::Worker::Installer::Prebuilt;
use strict;
use warnings;
our $VERSION = '0.956';

my @SKIP = (
    qr{/XML-SAX-v?[0-9\.]+\.tar\.gz$},
);

sub new {
    my $class = shift;
    bless {}, $class;
}

sub skip {
    my ($self, $uri) = @_;
    !!grep { $uri =~ $_ } @SKIP;
}

1;