From c83725c4fb7ee84b234d3faeffb03ba7c94c2e11 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 7 Feb 2011 18:52:22 +0100 Subject: Initial commit --- Build.PL | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Build.PL (limited to 'Build.PL') diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..0186dbc --- /dev/null +++ b/Build.PL @@ -0,0 +1,26 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use Module::Build; + +my $build = Module::Build->new( + build_requires => { + 'Test::More' => 0, + 'Test::Compile' => 0, + 'Test::Pod' => 0, + 'Test::Command' => 0, + }, + dist_name => 'raps2', + dist_version_from => 'bin/raps2', + license => 'unrestricted', + requires => { + 'perl' => '5.10.0', + 'autodie' => 0, + 'Crypt::CBC' => 0, + 'Crypt::Eksblowfish' => 0, + 'POSIX' => 0, + }, + script_files => 'bin/', +); +$build->create_build_script(); -- cgit v1.2.3