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

use strict;
use warnings;

use Module::Build;

my $build = new Module::Build(
    module_name   => 'Starlink::ATL',
    dist_abstract => 'Perl tools for Starlink\'s AST library',
    dist_version  => 0.02,
    license       => 'gpl',
    requires      => {
                      'Starlink::AST' => 1.02,
                     },
    dist_author   => [
                      'Graham Bell <g.bell@jach.hawaii.edu>',
                     ],
);

$build->create_build_script();