summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2010-12-19 12:48:07 +0100
committerDaniel Friesel <derf@finalrewind.org>2010-12-19 12:48:07 +0100
commitab171d056a160dd16174316c5cbf84c9059ad712 (patch)
tree4e3f338cccd17e3270420538b1d6e6180760ccb5 /Build.PL
parent65f299838d8042f3e9176d92c10a064cd086ad9c (diff)
Add Build.PL + basic tests
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL27
1 files changed, 27 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..d3f575c
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,27 @@
+#!/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,
+ },
+ dist_name => 'hashl',
+ dist_version_from => 'bin/hashl',
+ license => 'unrestricted',
+ requires => {
+ 'perl' => '5.10.0',
+ 'autodie' => 0,
+ 'Digest::SHA' => 0,
+ 'File::Find' => 0,
+ 'Getopt::Long' => 0,
+ 'Storable' => 0,
+ 'Time::Progress' => 0,
+ },
+ script_files => 'bin/',
+);
+$build->create_build_script();