#!/usr/bin/perl
# Makefile.PL
# Copyright (c) 2006 Jonathan Rockway <jrockway@cpan.org>

use strict;
use warnings;
use inc::Module::Install;

name('Directory-Scratch');
author('Jonathan Rockway <jrockway@cpan.org');
version_from('lib/Directory/Scratch.pm');
abstract_from('lib/Directory/Scratch.pm');
license('Perl');
include('ExtUtils::AutoInstall');

requires(
	 'File::Temp'  => 0,
	 'File::Path'  => 0,
	 'File::Slurp' => '9999.12',
	 'Path::Class' => 0,
	 'File::Copy'  => 0,
	 'File::Spec'  => 0,
         'File::stat'  => 0, # core
	 'Carp'        => 0,
	);
build_requires(
	 'Test::More' => 0
	);
features(
	 'String::Random for random files' => 
	    ['String::Random' => 0]
	);

par_base 'JROCKWAY';

tests('t/*/*.t');
auto_install();
WriteAll();


syntax highlighted by Code2HTML, v. 0.9.1