We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cc441c commit 93cbaf7Copy full SHA for 93cbaf7
Makefile.PL
@@ -13,6 +13,12 @@ my %parms = (
13
VERSION_FROM => 'lib/HTML/Tagset.pm',
14
LICENSE => 'artistic_2',
15
MIN_PERL_VERSION => 5.010001,
16
+ CONFIGURE_REQUIRES => {
17
+ 'ExtUtils::MakeMaker' => '6.46',
18
+ },
19
+ BUILD_REQUIRES => {
20
21
22
TEST_REQUIRES => {
23
'Test::More' => '0.95',
24
},
cpanfile
@@ -1,6 +1,10 @@
1
# Validate with cpanfile-dump
2
# https://metacpan.org/release/Module-CPANfile
3
4
+on 'configure' => sub {
5
+ requires 'ExtUtils::MakeMaker', '6.46';
6
+};
7
+
8
on 'build' => sub {
9
requires 'ExtUtils::MakeMaker', '6.46';
10
};
0 commit comments