summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 14c1bb346d9b5f8bb9894ab5b00d2f5302893c93 (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
#!/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,
	},
	module_name => 'App::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::VRR' => 0.02,
	},
	sign => 1,

)->create_build_script();