The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#! /usr/bin/perl

use Module::Build;
my $build = Module::Build->new
    (
     module_name => 'DB2::db',
     license => 'perl',
     requires => {
         DBD::DB2 => '0.78',
         Test::NoWarnings => 0,
     },
    );

$build->create_build_script();