From: Olaf Alders Date: Wed, 21 Nov 2018 02:31:08 +0000 (-0500) Subject: Add repository URLs to META files X-Git-Tag: 20190601~64^2^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=46b5a5d59913cdaa7c872ba85073a6e7de6b263a;p=perltidy.git Add repository URLs to META files --- diff --git a/Makefile.PL b/Makefile.PL index dab68653..34eb0d4f 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,6 +12,16 @@ WriteMakefile( : () ), - EXE_FILES => ['bin/perltidy'], - dist => { COMPRESS => 'gzip', SUFFIX => 'gz' }, + EXE_FILES => ['bin/perltidy'], + dist => { COMPRESS => 'gzip', SUFFIX => 'gz' }, + META_MERGE => { + 'meta-spec' => { version => 2 }, + resources => { + repository => { + type => 'git', + url => 'https://github.com/perltidy/perltidy.git', + web => 'https://github.com/perltidy/perltidy', + }, + }, + }, );