Mark Murray 24cafe721c Cleanup. No need to install manpages here; no other system module
does it, and it is done /in toto/ elsewhere.
1998-10-11 17:23:34 +00:00

38 lines
695 B
Perl

# This -*- perl -*- script makes the Makefile
# $Id: Makefile.PL,v 1.1.1.1 1998/09/09 06:59:51 markm Exp $
require 5.002;
use ExtUtils::MakeMaker;
#--- MY package
sub MY::libscan
{
my($self,$path) = @_;
return ''
if($path =~ m:/(RCS|CVS|SCCS)/: ||
$path =~ m:[~%]$: ||
$path =~ m:\.(orig|rej)$:
);
$path;
}
WriteMakefile(
VERSION_FROM => "SysV.pm",
NAME => "IPC::SysV",
MAN3PODS => ' ',
'dist' => {COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
DIST_DEFAULT => 'all tardist',
},
'clean' => {FILES => join(" ",
map { "$_ */$_ */*/$_" }
qw(*% *.html *.b[ac]k *.old *.orig))
},
'macro' => { INSTALLDIRS => 'perl' },
);