summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2025-01-19 12:01:49 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2025-01-19 12:01:49 +0100
commit2eacdd5002f57d470ed1116cbf095295db4f53e7 (patch)
tree2dfca66abea7d96c9c635683b1887de028b773df /Build.PL
parent555ef2c21583e7eacbf450a3f1a2de262a0fc380 (diff)
Add Build.PL
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL41
1 files changed, 41 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..b8b2a80
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,41 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+use Module::Build;
+
+Module::Build->new(
+
+ build_requires => {
+ 'Test::Compile' => 0,
+ 'Test::More' => 0,
+ 'Test::Pod' => 0,
+ },
+ configure_requires => {
+ 'Module::Build' => 0.40,
+ },
+ module_name => 'Travel::Routing::DE::DBRIS',
+ license => 'perl',
+ recommends => {
+ 'Cache::File' => 0,
+ },
+ requires => {
+ 'perl' => '5.20.0',
+ 'Class::Accessor' => '0.16',
+ 'DateTime' => 0,
+ 'DateTime::Format::Strptime' => 0,
+ 'Getopt::Long' => 0,
+ 'JSON' => 0,
+ 'List::Util' => 0,
+ 'LWP::UserAgent' => 0,
+ 'LWP::Protocol::https' => 0,
+ },
+ script_files => 'bin/',
+ sign => 1,
+ meta_merge => {
+ resources => {
+ repository =>
+ 'https://github.com/derf/Travel-Routing-DE-DBRIS'
+ }
+ },
+)->create_build_script();