source: ProjectBuilder/devel/pb/Makefile.PL@ 417

Last change on this file since 417 was 417, checked in by Bruno Cornec, 16 years ago
  • Reintegrates $pbproj as variable for filter functions (needed for PBPROJ expansion)
  • Fix pbinit using perl functions support
  • Adds a virtual pbinit action support in pb_env_init
File size: 1.1 KB
RevLine 
[283]1use 5.006001;
[33]2use ExtUtils::MakeMaker;
3
4# See lib/ExtUtils/MakeMaker.pm for details of how to influence
5# the contents of the Makefile that is written.
6WriteMakefile(
7 NAME => 'pb',
8 DISTNAME => 'project-builder',
[44]9 VERSION => 'PBVER',
[45]10 INST_SCRIPT => 'blib/bin',
[338]11 INSTALLDIRS => 'perl',
[33]12 PREREQ_PM => {
13 #HTTP::Headers => 1.59,
14 #Template => 0,
15 }, # e.g., Module::Name => 1.1
[63]16 #ABSTRACT_FROM => 'bin/pb', # retrieve abstract from module
[33]17 AUTHOR => 'Bruno Cornec <bruno#project-builder.org>',
[403]18 EXE_FILES => [ qw( bin/pb bin/pbg bin/pbvi ) ],
[338]19 MAN1PODS => { 'bin/pb' => '$(INST_MAN1DIR)/pb.$(MAN1EXT)', },
[405]20 MAN3PODS => { 'lib/ProjectBuilder/CMS.pm' => '$(INST_MAN3DIR)/ProjectBuilder::CMS.$(MAN3EXT)',
21 'lib/ProjectBuilder/Filter.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Filter.$(MAN3EXT)',
[417]22 'lib/ProjectBuilder/Changelog.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Changelog.$(MAN3EXT)',
23 'lib/ProjectBuilder/Env.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Env.$(MAN3EXT)', },
[33]24);
Note: See TracBrowser for help on using the repository browser.