File: Makefile.PL

package info (click to toggle)
io-stringy 2.111-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 320 kB
  • sloc: perl: 1,427; makefile: 5
file content (21 lines) | stat: -rwxr-xr-x 544 bytes parent folder | download | duplicates (6)
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',
	      }
	      );