Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,7 +1,38 @@
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
my %conf = (
'NAME' => 'Algorithm::Diff',
'VERSION_FROM' => 'lib/Algorithm/Diff.pm', # finds $VERSION
);

if (eval { ExtUtils::MakeMaker->VERSION(6.3002) }) {
$conf{LICENSE} = 'perl';
}


if (eval { ExtUtils::MakeMaker->VERSION(6.46) }) {
$conf{META_MERGE} = {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/TyeMcQueen/perl-algorithm-diff.git',
web => 'https://github.com/TyeMcQueen/perl-algorithm-diff',
license => 'http://dev.perl.org/licenses/',
},
#bugtracker => {
# web => 'http://github.com/szabgab/Module-Name/issues',
#},
#homepage => 'http://perlmaven.com/',
},
#x_contributors => [
# 'Peti Bar <petibar@cpan.org>',
#],
#x_IRC => 'irc://irc.perl.org/#perl',
#x_MailingList => 'http://lists.perl.org/list/perl-qa.html',
};
}

WriteMakefile(%conf);