The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# vi:et:sw=4 ts=4
require v5.8.1;
use strict;
use ExtUtils::MakeMaker;

&WriteMakefile(
    NAME            => 'MARC::Record',
    DISTNAME        => 'MARC-Record',
    VERSION_FROM    => 'lib/MARC/Record.pm',
    ABSTRACT_FROM   => 'lib/MARC/Record.pm',
    PMLIBDIRS       => [ qw( lib/ ) ],
    AUTHOR          => 'Andy Lester <andy@petdance.com>',
    PREREQ_PM       => {
        'Test::More' => 0,
        'File::Spec' => 0,
        'File::Find' => 0,
        'Carp' => 0,
    },
    EXE_FILES       => [ qw( bin/marcdump ) ],
    dist            => {
        COMPRESS => 'gzip -9f',
        SUFFIX => 'gz',
    },
    depend          => {
        Makefile => '$(VERSION_FROM)'
    },
    clean           => { FILES => 'MARC-Record-*' },
    
);