mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-02 01:21:14 +00:00
Add in Module::Build support files
This commit is contained in:
parent
300ab50713
commit
8c78ee5abe
3 changed files with 60 additions and 43 deletions
17
Build.PL
Normal file
17
Build.PL
Normal file
|
@ -0,0 +1,17 @@
|
|||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Module::Build;
|
||||
|
||||
my $build = Module::Build->new(
|
||||
module_name => 'App::ClusterSSH',
|
||||
license => 'gpl',
|
||||
requires => {
|
||||
'version' => '0',
|
||||
},
|
||||
build_requires => {
|
||||
},
|
||||
script_files => 'bin',
|
||||
);
|
||||
|
||||
$build->create_build_script;
|
Loading…
Add table
Add a link
Reference in a new issue