ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Makefile.PL
Revision: 1.18
Committed: Mon May 26 03:33:43 2008 UTC (15 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_2
Changes since 1.17: +1 -1 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 => 4,
12 JSON::XS => 2.01,
13 },
14 NAME => "Deliantra",
15 VERSION_FROM => "Deliantra.pm",
16 EXE_FILES => [qw(bin/cfarch-normalize bin/cfmap-normalize bin/cfarch-normalize bin/cfmap-plushify bin/cfmap-tagify)],
17 });
18
19 $mm->flush;
20