package builder::MyBuilder;
use strict;
use warnings;

use base "Module::Build";

my $DISCOUNT_VERSION = "2.2.7d";

sub new {
    my ($class, %argv) = @_;

    $class->SUPER::new(
        %argv,
        needs_compiler => 1,
    );
}

1;
