From 46b5a5d59913cdaa7c872ba85073a6e7de6b263a Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Tue, 20 Nov 2018 21:31:08 -0500 Subject: [PATCH] Add repository URLs to META files --- Makefile.PL | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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', + }, + }, + }, ); -- 2.39.5