summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-09-08 17:11:10 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-09-08 17:11:10 +0200
commita785413d46ea064d7bc6dff1c2c86d1392557dda (patch)
tree993061d827e144e75cdb12eb4ac6599215c1ac68 /Build.PL
initial commit
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL22
1 files changed, 22 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..094b2d3
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,22 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+use Module::Build;
+
+Module::Build->new(
+
+ build_requires => {
+ 'Test::More' => 0,
+ 'Test::Pod' => 0,
+ },
+ module_name => 'Travel::Status::DE::VRR',
+ license => 'unrestricted',
+ requires => {
+ 'perl' => '5.10.1',
+ 'Getopt::Long' => 0,
+ 'XML::LibXML' => 0,
+ },
+ sign => 1,
+
+)->create_build_script();