Detabardize - standardize code/tests on 2-space indent
[p5sagit/Try-Tiny.git] / Makefile.PL
CommitLineData
3176feef 1use strict;
2
3use ExtUtils::MakeMaker;
4
2ab8fb1c 5require 5.005_04;
6
3176feef 7WriteMakefile(
8d2ee831 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 resources => {
17 homepage => 'https://github.com/doy/try-tiny.git',
18 repository => 'git://github.com/doy/try-tiny.git',
19 },
20 },
3176feef 21);