Skip to content

Commit

Permalink
add repo metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Dec 9, 2024
1 parent 0713ae1 commit 5b4ca73
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ use ExtUtils::MakeMaker;
use strict;
use warnings;

my $package_name = "PDL::IO::ENVI";
(my $repo = $package_name) =~ s#::#-#g;
$repo = "PDLPorters/$repo";
WriteMakefile(
NAME => "PDL::IO::ENVI",
NAME => $package_name,
VERSION_FROM => 'ENVI.pm',
AUTHOR => 'PerlDL Developers <pdl-general@lists.sourceforge.net>',
CONFIGURE_REQUIRES => {
Expand All @@ -12,4 +15,17 @@ WriteMakefile(
PREREQ_PM => {
'PDL' => '2.094',
},
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
homepage => 'http://pdl.perl.org/',
bugtracker => {web=>"https://github.com/$repo/issues"},
repository => {
url => "git://github.com/$repo.git",
type => 'git',
web => "https://github.com/$repo",
},
x_IRC => 'irc://irc.perl.org/#pdl',
},
},
);

0 comments on commit 5b4ca73

Please # to comment.