use Module::Build;

if (open my $fh, '|dot', )
{
	close $fh;
}
else
{
	die "Please install Graphviz from http://www.graphviz.org/.\n";
}

Module::Build -> new
(
 module_name    => 'GraphViz',
 license        => 'perl',
 dist_abstract  => "Interface to AT&T's GraphViz. Deprecated. See GraphViz2",
 dist_author    => 'Leon Brocard <acme@astray.com>',
 build_requires =>
 {
 	 Test::More => 0.47,
 	 Test::Pod  => 1.44,
 },
 configure_requires =>
 {
 	 Module::Build => 0.3800,
 },
 requires =>
 {
	 Carp              => 1.01,
	 Config            => 0,
	 File::Which       => 1.09,
	 Getopt::Long      => 2.34,
	 IO::Dir           => 1.04,
	 IO::File          => 1.10,
	 IPC::Run          => 0.6,
	 LWP::Simple       => 6.00,
	 Parse::RecDescent => 1.965001,
	 Pod::Usage        => 1.16,
	 strict            => 1.03,
	 Time::HiRes       => 1.51,
	 vars              => 1.01,
	 warnings          => 1.03,
	 XML::Twig         => 3.38,
	 XML::XPath        => 1.13,
 },
) -> create_build_script();
