summaryrefslogtreecommitdiff
path: root/Build.PL
blob: b135755520fd59d6754a5b6641b239dd1c1d4ff2 (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
#!/usr/bin/env perl

use strict;
use warnings;
use Module::Build;

Module::Build->new(

	build_requires => {
		'File::Slurp' => 0,
		'Test::More' => 0,
		'Test::Pod' => 0,
	},
	configure_requires => {
		'Module::Build' => 0.40,
	},
	module_name => 'Travel::Status::DE::VRR',
	license => 'perl',
	requires => {
		'perl' => '5.10.1',
		'Carp' => 0,
		'Class::Accessor' => 0,
		'Getopt::Long' => 0,
		'List::Util' => 0,
		'LWP::UserAgent' => 0,
		'LWP::Protocol::https' => 0,
		'XML::LibXML' => 0,
	},
	sign => 1,
	meta_merge => {
		resources => {
			repository => 'https://github.com/derf/Travel-Status-DE-VRR'
		}
	},
)->create_build_script();