The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use ExtUtils::MakeMaker;
eval 'use ExtUtils::MakeMaker::Coverage';
warn "Optional ExtUtils::MakeMaker::Coverage not available\n" if $@;

WriteMakefile(
    NAME                => 'Text::Same',
    AUTHOR              => 'Kim Rutherford <same@xenu.org.uk>',
    VERSION_FROM        => 'lib/Text/Same.pm',
    ABSTRACT_FROM       => 'lib/Text/Same.pm',
    PL_FILES            => {},
    EXE_FILES           => ["bin/psame"],
    SIGN                => 1,
    PREREQ_PM => {
                  'Test::More' => 0,
                  'Term::Size' => 0,
                 },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Text-Same-*' },
);