ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Makefile.PL
Revision: 1.22
Committed: Tue Sep 1 21:37:25 2009 UTC (14 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_29, rel-1_24, rel-1_25
Changes since 1.21: +1 -0 lines
Log Message:
1.24

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 common::sense => 0,
12 AnyEvent => 4,
13 JSON::XS => 2.01,
14 Compress::LZF => 3.11,
15 },
16 NAME => "Deliantra",
17 VERSION_FROM => "Deliantra.pm",
18 EXE_FILES => [qw(bin/cfarch-normalize bin/cfmap-normalize bin/cfarch-normalize bin/cfmap-plushify bin/cfmap-tagify bin/cfxmlrender bin/cf-slotutil)],
19 });
20
21 $mm->flush;
22