use 5.006001; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'pb', DISTNAME => 'project-builder', VERSION => 'PBVER', INST_SCRIPT => 'blib/bin', INSTALLDIRS => 'perl', PREREQ_PM => { #HTTP::Headers => 1.59, #Template => 0, }, # e.g., Module::Name => 1.1 #ABSTRACT_FROM => 'bin/pb', # retrieve abstract from module AUTHOR => 'Bruno Cornec ', EXE_FILES => [ qw( bin/pb bin/pbg bin/pbvi bin/pbdistrocheck ) ], MAN1PODS => { 'bin/pb' => '$(INST_MAN1DIR)/pb.$(MAN1EXT)', }, MAN3PODS => { 'lib/ProjectBuilder/Distribution.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Distribution.$(MAN3EXT)', }, );