1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Try::Tiny::SmartCatch',
AUTHOR => q{Marcin Sztolcman <marcin@urzenia.net>},
VERSION_FROM => 'lib/Try/Tiny/SmartCatch.pm',
ABSTRACT_FROM => 'lib/Try/Tiny/SmartCatch.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'MIT')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Try-Tiny-SmartCatch-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/mysz/try-tiny-smartcatch',
},
},
);
|