mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-22 01:12:24 +00:00
Get the custom command 'Build email' working
Not sure when or how it broke, and I don't like this fix much, but at least it is working again.
This commit is contained in:
parent
5e8f1b1166
commit
2f26815445
1 changed files with 8 additions and 3 deletions
11
Build.PL
11
Build.PL
|
@ -7,12 +7,18 @@ use Module::Build;
|
|||
my %project_info = (
|
||||
tracker => 'https://github.com/duncs/clusterssh/issues',
|
||||
repository => 'http://github.com/duncs/clusterssh',
|
||||
homepage => 'http://clusterssh.sourceforge.net/',
|
||||
homepage => 'http://github.com/duncs/clusterssh/wiki',
|
||||
);
|
||||
|
||||
my $class = Module::Build->subclass(
|
||||
class => "Module::Build::Custom",
|
||||
code => q{
|
||||
code => qq{
|
||||
my \%project_info = (
|
||||
tracker => '$project_info{tracker}',
|
||||
homepage => '$project_info{homepage}',
|
||||
repository => '$project_info{repository}',
|
||||
);
|
||||
} . q{
|
||||
# don't check for errors; 'build_requires' should get this sorted
|
||||
eval {
|
||||
require File::Slurp;
|
||||
|
@ -51,7 +57,6 @@ Bug Reports and Issues: $project_info{tracker}
|
|||
Project Repository: $project_info{repository}
|
||||
CPAN release: http://search.cpan.org/~duncs/App-ClusterSSH-$v
|
||||
SF release: http://sourceforge.net/projects/clusterssh/files/2.%20ClusterSSH%20Series%204/App-ClusterSSH-${v}.tar.gz/download
|
||||
SF/net git repo: https://sourceforge.net/scm/?type=git&group_id=89139
|
||||
==========
|
||||
EOF
|
||||
return $self;
|
||||
|
|
Loading…
Add table
Reference in a new issue