The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use ExtUtils::MakeMaker;

WriteMakefile(
	'NAME'		=> 'Archive::Ar',
	'VERSION_FROM'	=> 'lib/Archive/Ar.pm', # finds $VERSION
	'PREREQ_PM'	=>
		{ 
			'Test::More' => '0',
			'Test::MockObject' => '0',
			'File::Spec' => '0',
			'File::Temp' => '0',
		},

	'dist'		=> 
		{
			COMPRESS => 'gzip -9',
			SUFFIX   => '.gz',
			DIST_DEFAULT => 'all tardist',
		},

	($] >= 5.005 ?    ## Add these new keywords supported since 5.005
		(
			ABSTRACT_FROM	=> 'lib/Archive/Ar.pm', # retrieve abstract from module
			AUTHOR     	=> 'Jay Bonci <jay@bonci.com>') 
		: ()),

	META_MERGE	=>
		{
			'meta-spec' => { version => 2 },
			resources =>
				{
					repository =>
						{
							type => 'git',
							url  => 'https://github.com/jbazik/Archive-Ar.git',
							web  => 'https://github.com/jbazik/Archive-Ar',
						},
				},
		},
);