ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Makefile.PL
Revision: 1.2
Committed: Thu Mar 16 00:11:30 2006 UTC (18 years, 2 months ago) by elmex
Content type: text/plain
Branch: MAIN
Changes since 1.1: +1 -0 lines
Log Message:
fixed Map constructor and removed debugging output

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use Config;
4
5 my $mm = MM->new({
6 dist => {
7 COMPRESS => 'gzip -9v',
8 SUFFIX => '.gz',
9 },
10 NAME => "Crossfire",
11 VERSION_FROM => "Crossfire.pm",
12
13 });
14
15 $mm->flush;
16