summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-05-18 13:46:45 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-05-18 13:46:45 +0200
commitf3d0995e9078c0b6a99793a90ce6671afc756ee1 (patch)
tree14b0e32d5526231ca04055dea50b1e128e59d591 /Build.PL
parentf9553f3e2b7f21080ce7974909e92d251aaae528 (diff)
CPANization
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL21
1 files changed, 21 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..0409c7c
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,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();