From 8c2895c12755365fac1b01c2c29b924c508fadd1 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 15 Jun 2011 20:41:03 +0200 Subject: Add Build.PL --- Build.PL | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 Build.PL (limited to 'Build.PL') 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(); -- cgit v1.2.3