1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/usr/bin/env perl
use strict;
use warnings;
use Module::Build;
Module::Build->new(
build_requires => {
'Module::Build' => '0.36',
'Test::More' => 0,
'Test::Compile' => 0,
'Test::Pod' => 0,
},
dist_abstract => 'vrr fakedisplay',
dist_name => 'vrr-fakedisplay',
license => 'perl',
PL_files => {
'lib/App/VRR/Fakedisplay.pm.PL' => 'lib/App/VRR/Fakedisplay.pm',
},
requires => {
'perl' => '5.10.0',
'Cache::File' => 0,
'DateTime' => 0,
'DateTime::Format::Strptime' => 0,
'GD' => 0,
'Mojolicious::Lite' => 0,
'Travel::Status::DE::DeutscheBahn' => 1.01,
'Travel::Status::DE::VRR' => 1.04,
},
sign => 1,
dist_version_from => 'cgi/index.pl',
)->create_build_script();
|