summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 34836de2ecaee531feea5ef1393b270d3bc2bbc4 (plain)
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
35
36
37
38
39
40
41
42
#!/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::DBRIS',
	license     => 'perl',
	recommends => {
		'Cache::File' => 0,
	},
	requires    => {
		'perl'                       => '5.20.0',
		'Carp'                       => 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-Status-DE-DBRIS'
		}
	},
)->create_build_script();