ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/Makefile.PL
Revision: 1.1
Committed: Sun Jul 10 17:07:44 2005 UTC (18 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_1, rel-0_2, rel-0_4
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use Config;
4
5 my $mm = MM->new({
6 dist => {
7 PREOP => 'pod2text AIO.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11 NAME => "IO::AIO",
12 VERSION_FROM => "AIO.pm",
13 LIBS => ['-lpthread'],
14 });
15
16 $mm->flush;
17