summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Build.PL')
-rwxr-xr-xBuild.PL25
1 files changed, 25 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100755
index 0000000..6dcd0fa
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,25 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+use Module::Build;
+
+Module::Build->new(
+
+ build_requires => {
+ 'Module::Build' => '0.36',
+ },
+ dist_name => 'db-fakedisplay',
+ dist_version_from => 'bin/db-fakedisplay',
+ license => 'unrestricted',
+ requires => {
+ 'perl' => '5.10.0',
+ 'File::ShareDir' => 0,
+ 'HTML::Template' => 0,
+ 'List::Util' => 0,
+ 'Travel::Status::DE::DeutscheBahn' => 0,
+ },
+ share_dir => 'share',
+ sign => 1,
+
+)->create_build_script();