mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-03 09:53:23 +00:00
30 lines
704 B
Perl
30 lines
704 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
use Module::Build;
|
|
|
|
my $build = Module::Build->new(
|
|
meta_merge => {
|
|
resources => {
|
|
repository => [
|
|
'http://clusterssh.git.sourceforge.net/',
|
|
'http://github.com/duncs/clusterssh',
|
|
],
|
|
},
|
|
},
|
|
module_name => 'App::ClusterSSH',
|
|
license => 'perl',
|
|
requires => {
|
|
'version' => '0',
|
|
'Tk' => '800.022',
|
|
'X11::Protocol' => '0.56',
|
|
'Locale::Maketext' => 0,
|
|
},
|
|
build_requires => {
|
|
'Test::Pod::Coverage' => 0,
|
|
'Test::Pod' => 0,
|
|
},
|
|
script_files => 'bin',
|
|
);
|
|
|
|
$build->create_build_script;
|