From 65d95a7af92ee505a8b04bc4a4a5be49ad66612e Mon Sep 17 00:00:00 2001 From: Amory Meltzer Date: Mon, 18 Oct 2021 15:44:41 -0400 Subject: [PATCH] Add git repo/url info to Makefile.PL --- Makefile.PL | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile.PL b/Makefile.PL index 74274ca..1869503 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -16,6 +16,16 @@ WriteMakefile( 'Encode' => 0, 'Carp' => 0 }, + META_MERGE => { + 'meta-spec' => { version => 2 }, + resources => { + repository => { + type => 'git', + url => 'https://github.com/joolswills/mediawikiapigit', + web => 'https://github.com/joolswills/mediawikiapi', + } + } + }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'MediaWiki-API-*' }, );