The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;

#copied shamelessly from Pod-PseudoPod-0.18/Makefile.PL
# The list of tests has to be explicitly generated on Win98.
my @tests;
for my $dir (qw(t)) {
    opendir my $dh, $dir or die $!;
    push @tests, map { "$dir/$_" } grep { /\.t$/ } readdir $dh;
    closedir $dh;
}

WriteMakefile(
    NAME         => 'Message::Transform',
    VERSION_FROM => 'lib/Message/Transform.pm', # finds $VERSION
    PREREQ_PM    => {
    },
    test =>
        {TESTS => "@tests"},
    AUTHOR       => 'Dana M. Diederich <diederich@gmail.com>',
    ABSTRACT     => 'Fast, simple message transformation', 
    PL_FILES => {}, # ignore the Build.PL file
    EXE_FILES => [],
    LICENSE => 'perl',
);