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

require 5.008;

eval "use Test::Manifest 1.21";   
   
WriteMakefile
	(
    'NAME'         => 'HTML::SimpleLinkExtor',
	'ABSTRACT'     => 'Extract links from HTML',
    'VERSION_FROM' => 'lib/HTML/SimpleLinkExtor.pm',
	'LICENSE'      => 'perl',
	'AUTHOR'       => 'brian d foy <bdfoy@cpan.org>',
	
   'PREREQ_PM'     => { 
    	'HTML::LinkExtor' => '1.28',
		'LWP::UserAgent'  => '0',
		'Test::Output'    => '0',
		'URI'             => '1.09',
		'URI::file'       => '0',
		'Test::More'      => '0.96',  # for subtest, done_testing
		},

	'EXE_FILES'    => [ 'scripts/linktractor' ],
	
	'dist'         => {
		'COMPRESS'        => 'gzip -9f',
		'SUFFIX'          => 'gz',
		},

  	'META_MERGE'   => {
		resources => {
			repository  => 'https://github.com/briandfoy/html-simplelinkextor'
			},
		},

    clean  => { FILES    => q|HTML-SimpleLinkExtor-*| },
	);