The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# $Id: Makefile.PL 2347 2007-10-28 02:16:07Z comdog $
use ExtUtils::MakeMaker;

eval "use Test::Manifest 1.14";

WriteMakefile
	(
	'NAME'          => 'Test::ISBN',
	'ABSTRACT'      => 'Check International Standard Book Numbers',
	'LICENSE'		=> 'perl',
	'AUTHOR'		=> 'brian d foy <bdfoy@cpan.org>',

	'VERSION_FROM'   => 'lib/ISBN.pm',
	'PREREQ_PM'      => {
		'Test::More'            => '0',
		'Test::Builder::Tester' => '0',
		'Business::ISBN'        => '2.0',
		},
	'PM'             => {
		'lib/ISBN.pm'     => '$(INST_LIBDIR)/ISBN.pm',
		},

	clean            => { FILES => 'Test-ISBN-*' },
	);