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

require 5.010;

eval "use Test::Manifest 1.21";

WriteMakefile
	(
	'NAME'         => 'Mac::PropertyList',
	'ABSTRACT'     => 'work with Mac plists at a low level',
	'VERSION_FROM' => 'lib/Mac/PropertyList.pm',
	'LICENSE'      => 'perl',
	'AUTHOR'       => 'brian d foy <bdfoy@cpan.org>',

	'PREREQ_PM' => {
		'Math::BigInt'  => '0',
		'MIME::Base64'  => '0',
		'Time::Local'   => '0',
		'Scalar::Util'  => '1.11',
		'XML::Entities' => '0',
		'parent'        => '0',
		},

	'TEST_REQUIRES' => {
		'Test::More'    => '0',
		},

	'clean'          => { FILES => 'Mac-PropertyList-*' },

	'META_MERGE' => {
		"meta-spec" => { version => 2 },
		resources => {
			repository => {
				type => 'git',
				url => 'git://github.com/briandfoy/mac-propertylist.git',
				web => 'https://github.com/briandfoy/mac-propertylist',
				},

			bugtracker => {
				web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Mac-PropertyList',
				mailto => 'bug-MacPropertyList@rt.cpan.org',
				},
			},
		},
	);