Need to move the Deobfuscator to a separate directory, as this collides
[bioperl-live.git] / deobfuscator / Deobfuscator / Build.PL
blobc307e53c0f95aaa0787c2d6ff1eca4e1365b4458
1 use strict;
2 use warnings;
3 use Module::Build;
5 my $builder = Module::Build->new(
6     module_name         => 'Deobfuscator',
7     license             => 'perl',
8     dist_author         => 'Dave Messina <dave-pause@davemessina.net>',
9     dist_version_from   => 'lib/Deobfuscator.pm',
10     script_files        => ['bin/deob_index.pl',],
11     requires => {
12         'Test::More'       => 0,
13         'version'          => 0,
14                 'Class::Inspector' => 0,
15                 'DB_File'          => 0,
16         'CGI'              => 0,
17     },
18     add_to_cleanup      => [ 'Deobfuscator-*' ],
21 $builder->create_build_script();