/usr/local/CPAN/Config-AutoConf/Makefile.PL


use strict;
use warnings;
use ExtUtils::MakeMaker;

use 5.008002;

WriteMakefile(
	      NAME          => 'Config::AutoConf',
	      AUTHOR        => 'Alberto Simoes <ambs@cpan.org>',
	      VERSION_FROM  => 'lib/Config/AutoConf.pm',
	      ABSTRACT_FROM => 'lib/Config/AutoConf.pm',
	      PL_FILES      => {},
	      PREREQ_PM     => {
				'ExtUtils::CBuilder' => 0.23,
				'Test::More'         => 0,
			       },
	      dist          => {
				COMPRESS => 'gzip -9f',
				SUFFIX   => 'gz'
			       },
	      clean         => {
				FILES => 'Config-AutoConf-*'
			       },
	     );