|
Last change
on this file since 731 was 539, checked in by Bruno Cornec, 17 years ago |
|
First attempt to code support for real/virtual names for packages in order to support perl naming in both Debian and RPM distributions
|
|
File size:
1.0 KB
|
| Rev | Line | |
|---|
| [283] | 1 | use 5.006001;
|
|---|
| [33] | 2 | use ExtUtils::MakeMaker;
|
|---|
| 3 |
|
|---|
| 4 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
|---|
| 5 | # the contents of the Makefile that is written.
|
|---|
| 6 | WriteMakefile(
|
|---|
| [539] | 7 | NAME => 'PBPKG',
|
|---|
| 8 | DISTNAME => 'PBPKG',
|
|---|
| [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>',
|
|---|
| [402] | 18 | EXE_FILES => [ qw( bin/pbdistrocheck ) ],
|
|---|
| [396] | 19 | MAN3PODS => { 'lib/ProjectBuilder/Distribution.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Distribution.$(MAN3EXT)',
|
|---|
| [405] | 20 | 'lib/ProjectBuilder/Conf.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Conf.$(MAN3EXT)',
|
|---|
| [514] | 21 | 'lib/ProjectBuilder/Display.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Display.$(MAN3EXT)',
|
|---|
| [396] | 22 | 'lib/ProjectBuilder/Base.pm' => '$(INST_MAN3DIR)/ProjectBuilder::Base.$(MAN3EXT)', },
|
|---|
| [33] | 23 | );
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.