ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/Makefile.PL
Revision: 1.28
Committed: Wed Nov 7 12:04:37 2018 UTC (5 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_01, HEAD
Changes since 1.27: +1 -1 lines
Log Message:
2.01

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 Digest::SHA => 5,
16 },
17 NAME => "Deliantra",
18 VERSION_FROM => "Deliantra.pm",
19 EXE_FILES => [qw(bin/cfarch-normalize bin/cfmap-normalize bin/cfmap-plushify bin/cffi-filter
20 bin/cfmap-cavehify bin/cfmap-tagify bin/cfxmlrender bin/cf-slotutil bin/cfmap-set)],
21 });
22
23 $mm->flush;
24