summaryrefslogtreecommitdiff
path: root/Build.PL
blob: f7bc662f7af31f156460c29165456a1b67c3bb48 (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
#!/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,
	},
	dist_name => 'ekgping',
	dist_version_from => 'bin/ekgping',
	license => 'unrestricted',
	requires => {
		'perl' => '5.10.0',
		'File::ShareDir' => 0,
		'Getopt::Long' => 0,
		'IO::Handle' => 0,
		'IPC::Run' => 0,
		'SDL' => 0,
		'Term::Size' => 0,
		'Time::HiRes' => 0,
	},
	share_dir => 'share',
	sign => 1,

)->create_build_script();