-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
34 lines (27 loc) · 850 Bytes
/
Build.PL
File metadata and controls
34 lines (27 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!perl
package CrossView::Simple;
use strict;
use warnings;
my $abstract = 'Wrapper for a VNC/SSH server and viewer';
my $github = 'https://github.com/vipera/crossview';
use File::Spec::Functions qw(catfile);
my $module = __PACKAGE__;
(my $dist = $module) =~ s/::/-/g;
my $main_file = catfile('lib', split /::/, "$module.pm");
use Module::Build;
my $build = Module::Build->new(
module_name => $module,
dist_abstract => $abstract,
dist_author => 'Marin Rukavina <marin@shinyshell.net>',
license => 'bsd',
requires => {
'perl' => '5.6.1',
'Term::ReadPassword' => 0,
'Net::OpenSSH' => 0,
'Net::EmptyPort' => 0,
'IPC::Run3' => 0,
'IO::Pty' => 0,
},
script_files => [ qw(script/crossview) ],
);
$build->create_build_script;