diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-02-07 18:52:22 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-02-07 18:52:22 +0100 |
commit | c83725c4fb7ee84b234d3faeffb03ba7c94c2e11 (patch) | |
tree | b26e0ff28a38bab582e1484555b1794156c1f383 /Build.PL |
Initial commit
Diffstat (limited to 'Build.PL')
-rw-r--r-- | Build.PL | 26 |
1 files changed, 26 insertions, 0 deletions
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(); |