The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'	    => 'VCS',
    'ABSTRACT_FROM' => 'VCS.pm', # finds =head1 NAME line for PPD
    'VERSION_FROM'  => 'VCS.pm', # finds $VERSION
    'PREREQ_PM'     => { 'URI' => 0 },
    META_MERGE => {
      "meta-spec" => { version => 2 },
      resources => {
	repository => {
	  type => 'git',
	  url => 'https://github.com/mohawk2/cpan-vcs.git',
	  web => 'https://github.com/mohawk2/cpan-vcs',
	},
      },
    },
);