[project @ 129]
[language-befunge-debugger.git] / Makefile.PL
blob10365d481cfaa5d851b866430b6848c64a7b747d
1 #!perl
3 # This file is part of Language::Befunge::Debugger.
4 # Copyright (c) 2007 Jerome Quelin, all rights reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the same terms as Perl itself.
11 BEGIN { require 5.008; }
12 use strict;
13 use warnings;
14 use ExtUtils::MakeMaker;
16 WriteMakefile(
17     NAME                => 'Language::Befunge::Debugger',
18     AUTHOR              => 'Jerome Quelin <jquelin@cpan.org>',
19     LICENSE             => 'perl',
20     VERSION_FROM        => 'lib/Language/Befunge/Debugger.pm',
21     ABSTRACT_FROM       => 'lib/Language/Befunge/Debugger.pm',
22     EXE_FILES           => [ 'bin/jqbefdb' ],
23     PREREQ_PM => {
24         'Language::Befunge' => 3.01,
25         'POE'               => 0,
26         'Tk'                => 0,
27         'Tk::TableMatrix'   => 0,
28         'Test::More'        => 0,
29     },
30     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
31     clean => { FILES => [
32                 'Language-Befunge-Debugger-*', 'MANIFEST.bak',
33                 map { ( '*/' x $_ ) . '*~' } 0..5
34         ] },