The construct introduced in 2b0d579d8 confuses perl 5.6 - simplify
[p5sagit/Try-Tiny.git] / Makefile.PL
1 use strict;
2
3 use ExtUtils::MakeMaker;
4
5 require 5.006;
6
7 WriteMakefile(
8   NAME         => 'Try::Tiny',
9   VERSION_FROM => 'lib/Try/Tiny.pm',
10   INSTALLDIRS  => 'site',
11   PL_FILES     => { },
12   PREREQ_PM    => {
13     'Test::More' => 0,
14   },
15   META_MERGE => {
16     dynamic_config => 0,
17     resources => {
18       homepage => 'https://github.com/doy/try-tiny.git',
19       repository => 'git://github.com/doy/try-tiny.git',
20     },
21   },
22 );