| Revision: | 1.11 |
| Committed: | Thu Apr 5 17:33:31 2007 UTC (19 years, 3 months ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-0_98, rel-0_99, rel-2_1 |
| Changes since 1.10: | +1 -1 lines |
| Log Message: | *** empty log message *** |
| # | 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::XS => 1.1, |
| 13 | }, |
| 14 | NAME => "Crossfire", |
| 15 | VERSION_FROM => "Crossfire.pm", |
| 16 | EXE_FILES => [qw(bin/cfarch-normalize bin/cfmap-normalize bin/cfarch-normalize bin/cfmap-plushify)], |
| 17 | |
| 18 | }); |
| 19 | |
| 20 | $mm->flush; |
| 21 |