ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Makefile.PL
Revision: 1.13
Committed: Thu Nov 21 13:08:05 2002 UTC (21 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.12: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3 root 1.4 if ($] < 5.006) {
4     print <<EOF;
5    
6     ***
7     *** WARNING: This module is quite low-level and uses undocumented perl
8     *** internals to do it's job. While it seems to work fine with perl-5.8,
9     *** 5.7 and 5.6, it has not been tested with older versions. If it
10     *** compiles and passes the testsuite, it should work. Otherwise you
11 root 1.11 *** should either upgrade or fix it ;)
12 root 1.4 ***
13     *** Marc Lehmann <pcg\@goof.com>
14     ***
15    
16     EOF
17     }
18 root 1.1
19 root 1.7 $EVENT = eval { require Event };
20    
21 root 1.1 WriteMakefile(
22 root 1.5 dist => {
23     PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
24     COMPRESS => 'gzip -9v',
25     SUFFIX => '.gz',
26     },
27     NAME => "Coro",
28 root 1.1 VERSION_FROM => "Coro.pm",
29 root 1.7 DIR => ['Coro', ($EVENT ? 'Event' : ())],
30 root 1.6 PREREQ_PM => {
31 root 1.12 Event => 0.85,
32 root 1.10 Scalar::Util => 0.00,
33 root 1.5 },
34 root 1.7 PM => {
35 root 1.9 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
36 root 1.8 },
37 root 1.1 );
38    
39 root 1.3 sub MY::postamble {
40     <<EOF;
41    
42     # set \$VERSION in all modules
43     setver:
44 root 1.13 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm Event/*.pm
45 root 1.3
46     EOF
47     }
48    
49