expanded test cases in this file
[migration-tools.git] / Equinox-Migration / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Equinox::Migration',
7     AUTHOR              => 'Shawn Boyette <sboyette@esilibrary.com>',
8     VERSION_FROM        => 'lib/Equinox/Migration.pm',
9     ABSTRACT_FROM       => 'lib/Equinox/Migration.pm',
10     PL_FILES            => {},
11     PREREQ_PM => {
12         'Test::More' => 0,
13     },
14     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
15     clean               => { FILES => 'Equinox-Migration-*' },
16 );