Need to move the Deobfuscator to a separate directory, as this collides
[bioperl-live.git] / deobfuscator / Deobfuscator / Makefile.PL
blobf4092ec915d414737d9881cea2b13f3ef00b8497
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
5 WriteMakefile(
6     NAME                => 'Deobfuscator',
7     AUTHOR              => 'Dave Messina <dave-pause@davemessina.net>',
8     VERSION_FROM        => 'lib/Deobfuscator.pm',
9     ABSTRACT_FROM       => 'lib/Deobfuscator.pm',
10     EXE_FILES           => ['bin/deob_index.pl',],
11     PL_FILES            => {},
12     PREREQ_PM => {
13         'Test::More'       => 0,
14         'version'          => 0,
15                 'Class::Inspector' => 0,
16                 'DB_File'          => 0,
17         'CGI'              => 0,
18     },
19     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
20     clean               => { FILES => 'Deobfuscator-*' },