diff options
-rw-r--r-- | Makefile.PL | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL index 42e6d3b..f04ce86 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -75,6 +75,20 @@ sub find_prereqs "PREREQ_PM" => find_prereqs(qr{^(bin|lib)/}), ); +if (eval {ExtUtils::MakeMaker->VERSION("6.46");}) { + $mm_args{"META_MERGE"} = { + "meta-spec" => { version => 2 }, + "resources" => { + "homepage" => "http://www.pehjota.net/projects/decmath/", + "repository" => { + "type" => "git", + "url" => "git://git.pehjota.net/decmath/Math-Decimal-FastPP.git", + "web" => "http://git.pehjota.net/decmath/Math-Decimal-FastPP.git/", + }, + }, + }; +} + if (eval {ExtUtils::MakeMaker->VERSION("6.64");}) { # 6.64 <= MM $mm_args{"TEST_REQUIRES"} = find_prereqs(qr{^t/}); |