perl/dist/constant/Makefile.PL
Yves Orton 07ec51142e dist/constant - synchronize Changes and Makefile.PL into core
Minor changes to the Makefile.PL to point at the github repo for perl,
and cleaned trailing whitespace from Changes file.
2023-03-04 19:46:19 +08:00

31 lines
1.0 KiB
Perl

use 5.006;
use strict;
use ExtUtils::MakeMaker;
my %prereq = (
"Test::More" => 0,
);
WriteMakefile(
NAME => 'constant',
LICENSE => 'perl',
AUTHOR => 'Sebastien Aperghis-Tramoni <sebastien@aperghis.net>',
VERSION_FROM => 'lib/constant.pm',
ABSTRACT_FROM => 'lib/constant.pm',
INSTALLDIRS => ( $] < 5.011 ? 'perl' : 'site' ),
PL_FILES => {},
PREREQ_PM => \%prereq,
META_MERGE => {
resources => {
repository => 'https://github.com/Perl/perl5.git',
license => 'http://dev.perl.org/licenses/',
homepage => 'https://metacpan.org/module/constant',
irc => 'irc://irc.perl.org/#p5p',
mailinglist => 'http://lists.perl.org/list/perl5-porters.html',
bugtracker => 'https://github.com/Perl/perl5/issues',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'constant-*' },
);