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

WriteMakefile(
    NAME                => 'Archive::Har',
    AUTHOR              => q{David Dick <ddick@cpan.org>},
    VERSION_FROM        => 'lib/Archive/Har.pm',
    ABSTRACT_FROM       => 'lib/Archive/Har.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
    },
    PREREQ_PM => {
        'English' => 0,
        'Carp' => 0,
        'XML::LibXML' => 0,
	'IO::Compress::Gzip' => 0,
	'IO::Uncompress::Gunzip' => 0,
	'JSON' => 0,
        'overload' => 0,
        'strict' => 0,
        'warnings' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Archive-Har-*' },
);