summaryrefslogtreecommitdiff
path: root/cpan/dist/IO-stringy/Makefile.PL
blob: aeecddc2b9cb5c2bcd927d1e0ce4826149f222bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl
use ExtUtils::MakeMaker;

#------------------------------------------------------------
# Makefile:
#------------------------------------------------------------

# Ensure the test output directory:
(-d "testout") or mkdir "testout", 0755 or die "please make dir ./testout\n";

# Write the Makefile:
WriteMakefile(
	      NAME         => "IO-stringy",
	      VERSION_FROM => "lib/IO/Stringy.pm",
	      DISTNAME     => "IO-stringy",
	      'dist'       => {
		  PREOP    => "cvu_perl_preop -m IO::Stringy -f",
		  COMPRESS => 'gzip',
		  SUFFIX   => 'gz',
	      }
	      );