The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# $Id$
use ExtUtils::MakeMaker;

require 5.008;

eval "use Test::Manifest 1.21";

WriteMakefile(
	'NAME'		    => 'App::Cpan',
	'VERSION_FROM'  => 'lib/Cpan.pm',
	'ABSTRACT'      => 'Interact with CPAN from the command line',
	'LICENSE'       => 'perl',
	'AUTHOR'        => 'brian d foy <bdfoy@cpan.org>',

	'EXE_FILES' =>  [ 'script/cpan' ],
	 
	'META_MERGE'    => {
		no_index => {
			directory => [qw(t inc examples)],
			}
		},
		
	'PM'            => {
		'lib/Cpan.pm'     => '$(INST_LIBDIR)/Cpan.pm',
		},
		
	'PREREQ_PM' => {
		'Test::More' => '0',
		'CPAN'       => '1.9301',
		},

	'MAN1PODS'       => {},
	'MAN3PODS'       => {},

	clean => { FILES => '*.bak App-* cpan-* cover_db' },
	);