From 1932c998cac488d6ba27789fea56bcf3a554a35c Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 4 Mar 2011 12:22:22 +0100 Subject: Switch from Makefile to Build.PL --- Build.PL | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Build.PL (limited to 'Build.PL') diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..4d7399f --- /dev/null +++ b/Build.PL @@ -0,0 +1,22 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use Module::Build; + +my $build = Module::Build->new( + build_requires => { + 'Test::Cmd' => 0, + 'Test::Compile' => 0, + 'Test::More' => 0, + 'Test::Pod' => 0, + }, + dist_name => 'comirror', + dist_version_from => 'bin/comirror', + license => 'unrestricted', + requires => { + 'perl' => '5.10.0', + 'WWW::Mechanize' => 0, + }, +); +$build->create_build_script(); -- cgit v1.2.3