The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/bin/perl



use strict;
use warnings;


use Module::Build;
my $build = Module::Build->new(
    module_name => 'Config::YAARG',
    dist_abstract => 'Yet-another argument processor, designed to provide a standard method for parsing constructor arguments',
    requires => {
        'TAP' => 0
    },
    use_tap_harness => 1,
    create_makefile_pl => 'passthrough'
);


$build->create_build_script();