1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/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' => {
COMPRESS => 'gzip -f',
SUFFIX => 'gz',
}
);
|