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;

my %pm = map { $_ => "\$(INST_LIB)/$_" } "HTTP/Any.pm", map { "HTTP/Any/$_.pm" } qw(Curl AnyEvent LWP);

WriteMakefile(
	NAME         => "HTTP::Any",
	ABSTRACT     => 'HTML::Any - a common interface for HTTP clients (LWP, AnyEvent::HTTP, Curl)',
	AUTHOR       => '<kni@cpan.org>',
	LICENSE      => "perl",
	VERSION_FROM => "HTTP/Any.pm",
	PM           => \%pm,
);