mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 08:38:23 +00:00
Minor changes to the Makefile.PL to point at the github repo for perl, and cleaned trailing whitespace from Changes file.
31 lines
1.0 KiB
Perl
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-*' },
|
|
);
|