ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Makefile.PL
Revision: 1.10
Committed: Sun Nov 25 20:04:04 2001 UTC (22 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.9: +2 -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     *** should either upgrade or contact the author, maybe it can be made to
12     *** work...
13     ***
14     *** Marc Lehmann <pcg\@goof.com>
15     ***
16    
17     EOF
18     }
19 root 1.1
20 root 1.7 $EVENT = eval { require Event };
21    
22 root 1.1 WriteMakefile(
23 root 1.5 dist => {
24     PREOP => 'pod2text Coro.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
25     COMPRESS => 'gzip -9v',
26     SUFFIX => '.gz',
27     },
28     NAME => "Coro",
29 root 1.1 VERSION_FROM => "Coro.pm",
30 root 1.7 DIR => ['Coro', ($EVENT ? 'Event' : ())],
31 root 1.6 PREREQ_PM => {
32 root 1.10 Event => 0.83, # still, 0.83 and below have serious bugs(!)
33     Scalar::Util => 0.00,
34 root 1.5 },
35 root 1.7 PM => {
36 root 1.9 'Coro.pm' => '$(INST_LIBDIR)/Coro.pm',
37 root 1.8 },
38 root 1.1 );
39    
40 root 1.3 sub MY::postamble {
41     <<EOF;
42    
43     # set \$VERSION in all modules
44     setver:
45     \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm Coro/*.pm
46    
47     EOF
48     }
49    
50