ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Net-FCP/Makefile.PL
Revision: 1.3
Committed: Wed Sep 10 04:50:44 2003 UTC (23 years ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.2: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 require 5.005;
4
5 WriteMakefile(
6 dist => {
7 PREOP => 'pod2text FCP.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11 NAME => "Net::FCP",
12 VERSION_FROM => "FCP.pm",
13 'PM' => {
14 'FCP.pm' => '$(INST_LIBDIR)/FCP.pm',
15 'Event/Event.pm' => '$(INST_LIBDIR)/FCP/Event/Event.pm',
16 'Event/Coro.pm' => '$(INST_LIBDIR)/FCP/Event/Coro.pm',
17 },
18 );
19