diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-01-08 17:50:20 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-01-08 17:50:20 (EST) |
commit | 1f107c1f673e9ea84d16693796375910b0c6eb22 (patch) | |
tree | bc6615bf2e36d5d127e8799ba02cd8d3b2e7bd12 | |
parent | b76871a4c5bd5f8553c3292e194f74276d15672b (diff) | |
download | Math-Decimal-FastPP-1f107c1f673e9ea84d16693796375910b0c6eb22.zip Math-Decimal-FastPP-1f107c1f673e9ea84d16693796375910b0c6eb22.tar.gz Math-Decimal-FastPP-1f107c1f673e9ea84d16693796375910b0c6eb22.tar.bz2 |
Makefile.PL: Add META_MERGE
-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/}); |