# $Id: Makefile.PL 2349 2007-10-28 02:23:24Z comdog $ use ExtUtils::MakeMaker; require 5.006; WriteMakefile ( 'NAME' => 'Test::Manifest', 'ABSTRACT' => 'interact with a t/test_manifest file', 'VERSION_FROM' => 'lib/Manifest.pm', 'LICENSE' => 'perl', 'AUTHOR' => 'brian d foy ', 'PREREQ_PM' => { 'Test::More' => '0', 'ExtUtils::MakeMaker' => '6.03', }, 'PM' => { 'lib/Manifest.pm' => '$(INST_LIBDIR)/Manifest.pm', }, 'MAN3PODS' => { 'lib/Manifest.pm' => '$(INST_MAN3DIR)/Test::Manifest.3', }, clean => { FILES => 'Test-Manifest-* t/test_manifest' }, );