clusterssh/Build.PL

46 lines
1.4 KiB
Perl
Raw Permalink Normal View History

2009-12-19 17:20:33 +00:00
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
meta_merge => {
resources => {
2012-12-11 15:50:45 +00:00
Repository => [
2010-01-04 10:59:26 +00:00
'http://clusterssh.git.sourceforge.net/',
'http://github.com/duncs/clusterssh',
2010-01-04 10:59:26 +00:00
],
bugtracker => 'http://sourceforge.net/tracker/?group_id=89139',
homepage => 'http://clusterssh.sourceforge.net/',
},
2010-01-04 10:59:26 +00:00
},
module_name => 'App::ClusterSSH',
license => 'perl',
dist_author => q{Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>},
dist_version_from => 'lib/App/ClusterSSH.pm',
requires => {
2010-01-11 19:39:20 +00:00
'version' => '0',
2014-01-04 13:26:57 +00:00
'Gtk2' => '1.244',
2010-01-11 19:39:20 +00:00
'X11::Protocol' => '0.56',
'Locale::Maketext' => 0,
'Exception::Class' => '1.31',
'Try::Tiny' => 0,
2009-12-19 17:20:33 +00:00
},
2010-01-11 19:38:10 +00:00
build_requires => {
'Test::Pod::Coverage' => 0,
'Test::Pod' => 0,
2010-06-20 17:56:00 +01:00
'Test::Trap' => 0,
'Readonly' => 0,
'File::Which' => 0,
'File::Temp' => 0,
'Test::DistManifest' => 0,
'Test::Differences' => 0,
2010-01-11 19:38:10 +00:00
},
configure_requires => { 'Module::Build' => 0, },
add_to_cleanup => ['App-ClusterSSH-*'],
create_makefile_pl => 'traditional',
script_files => 'bin',
2009-12-19 17:20:33 +00:00
);
$build->create_build_script;