summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Build.PL')
-rwxr-xr-xBuild.PL23
1 files changed, 23 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100755
index 0000000..ef2ad6a
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,23 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+use Module::Build;
+
+Module::Build->new(
+
+ build_requires => {
+ 'Test::Compile' => 0,
+ 'Test::More' => 0,
+ 'Test::Pod' => 0,
+ },
+ dist_name => 'ekgping',
+ dist_version_from => 'bin/ekgping',
+ license => 'unrestricted',
+ requires => {
+ 'perl' => '5.10.0',
+ },
+ share_dir => 'share',
+ sign => 1,
+
+)->create_build_script();