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 ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'          => 'DBIx::XMLMessage',
    'VERSION_FROM'  => 'XMLMessage.pm', # finds $VERSION
    'PREREQ_PM'     => { 'DBI' => "1.00", 'XML::Parser' => "2.23" },
    'dist'          => {'COMPRESS' => 'gzip', suffix => 'gz' },
);