use ExtUtils::MakeMaker; require 5.006; eval "use Test::Manifest 1.21"; WriteMakefile ( 'NAME' => 'Test::File', 'ABSTRACT' => 'Check file attributes', 'LICENSE' => 'perl', 'AUTHOR' => 'brian d foy ', 'VERSION_FROM' => 'lib/File.pm', 'PREREQ_PM' => { 'Test::More' => '0.65', 'Test::Builder::Tester' => '1.04', 'Test::Builder' => '0.33', 'Test::Manifest' => '1.14', }, 'PM' => { 'lib/File.pm' => '$(INST_LIBDIR)/File.pm', }, ( $ExtUtils::MakeMaker::VERSION ge '6.48' ? ( MIN_PERL_VERSION => 5.006, META_MERGE => { resources => { repository => 'git://github.com/briandfoy/test-file.git', }, keywords => ['testing','file'], }, ) : () ), 'MAN3PODS' => { 'lib/File.pm' => '$(INST_MAN3DIR)/Test::File.$(MAN3EXT)', }, clean => { FILES => q|Test-File-* test_files| }, );