diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-11-25 20:18:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-11-25 20:18:17 +0100 |
commit | d8c3d515eb1297792bf8105a44c6ce6d5be9ec7c (patch) | |
tree | 3b975b395d4673f5e01ece6e509e16bddc5e42f3 /Build.PL | |
parent | a6fab60716a8aba9030d60bc821545e7c41f1a46 (diff) |
add preliminary build.PL and basic tests
Diffstat (limited to 'Build.PL')
-rw-r--r-- | Build.PL | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..714f414 --- /dev/null +++ b/Build.PL @@ -0,0 +1,35 @@ +#!/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::Status::DE::DBWagenreihung', + license => 'perl', + requires => { + 'perl' => '5.20.0', + 'Carp' => 0, + 'Class::Accessor' => 0, + 'Getopt::Long' => 0, + 'JSON' => 0, + 'List::Util' => 0, + 'LWP::UserAgent' => 0, + }, + sign => 1, + meta_merge => { + resources => { + repository => 'https://github.com/derf/Travel-Status-DE-DBWagenreihung' + } + }, + +)->create_build_script(); |