ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Makefile.PL
Revision: 1.8
Committed: Wed Nov 29 14:31:30 2006 UTC (17 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_96
Changes since 1.7: +1 -0 lines
Log Message:
*** empty log message ***

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 PREREQ_PM => {
11 AnyEvent => 0,
12 JSON::Syck => 0.13,
13 },
14 NAME => "Crossfire",
15 VERSION_FROM => "Crossfire.pm",
16 EXE_FILES => [qw(bin/cfarch-normalize bin/cfmap-normalize bin/cfmap-plushify)],
17
18 });
19
20 $mm->flush;
21