summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 4d7399fdbc53268ea2293400dfffe08044dc2d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env perl

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

my $build = Module::Build->new(
	build_requires => {
		'Test::Cmd' => 0,
		'Test::Compile' => 0,
		'Test::More' => 0,
		'Test::Pod' => 0,
	},
	dist_name => 'comirror',
	dist_version_from => 'bin/comirror',
	license => 'unrestricted',
	requires => {
		'perl' => '5.10.0',
		'WWW::Mechanize' => 0,
	},
);
$build->create_build_script();