blob: 0409c7c55f64d625e9037e192003a3c87567a208 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env perl
use strict;
use warnings;
use Module::Build;
Module::Build->new(
build_requires => {
'Test::Command' => 0,
'Test::Compile' => 0,
'Test::More' => 0,
},
dist_name => 'ssh-forcecommand',
dist_version_from => 'bin/ssh-forcecommand',
license => 'unrestricted',
requires => {
'perl' => '5.10.0',
},
script_files => 'bin/ssh-forcecommand',
)->create_build_script();
|