summaryrefslogtreecommitdiff
path: root/Build.PL
blob: e2d1f4747db1d11a222b78d7d4f9d3ebe3fd3fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use Module::Build;

Module::Build->new(
	dist_name     => 'Tanja',
	dist_version  => '0.1',
	dist_author   => 'Yoran Heling <yorhel@cpan.org>',
	dist_abstract => 'An interface to the Tanja communication system',
	license       => 'mit',
	pm_files => {
		'Tanja.pm' => 'lib/Tanja.pm',
	},
	requires => {
		perl     => '5.10.0',
		AnyEvent => 0,
	},
	recommends => {
		JSON     => 0,
		JSON::XS => 0,
	},
)->create_build_script;

# vim:noet:sw=4:ts=4