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

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME              => 'Archive::ByteBoozer',
    VERSION_FROM      => 'lib/Archive/ByteBoozer.pm',
    PREREQ_PM         => {
                             Data::Dumper        => 0,
                             File::Temp          => 0,
                             IO::Capture::Stdout => 0,
                             IO::File            => 0,
                             IO::Scalar          => 0,
                             Params::Validate    => 0,
                             Scalar::Util        => 0,
                             Test::Deep          => 0,
                             Test::Exception     => 0,
                             Test::More          => 0,
                         },
    ($] >= 5.005 ?
      (AUTHOR         => 'Pawel Krol <pawelkrol@cpan.org>') : ()),
    DEFINE            => '',
    OBJECT            => 'ByteBoozer.o cruncher.o',
    OPTIMIZE          => '-O2',
);