source: devel/dploy-common/Makefile.PL @ 62

Revision 62, 734 bytes checked in by bruno, 4 years ago (diff)

Still working on post install scripts

Line 
1use 5.006001;
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         => 'PBPKG',
8    DISTNAME     => 'PBPKG',
9    VERSION      => 'PBVER',
10    INST_SCRIPT  => 'blib/bin',
11        INSTALLDIRS  => 'perl',
12    PREREQ_PM    => {
13                        #HTTP::Headers                    => 1.59,
14                        #Template                         => 0,
15    },    # e.g., Module::Name => 1.1
16    AUTHOR        => 'Bruno Cornec <bruno#dploy.org>',
17        EXE_FILES     => [ qw( bin/PBPKG-post ) ],
18        MAN1PODS      => { 'bin/PBPKG-post' => '$(INST_MAN1DIR)/PBPKG-post.$(MAN1EXT)', },
19        MAN3PODS      => { 'lib/Dploy/Base.pm' => '$(INST_MAN3DIR)/Dploy::Base.$(MAN3EXT)', },
20);
Note: See TracBrowser for help on using the repository browser.